/* ========================================
   STELLAR COGNITION - CREATIVE ARTISTIC STYLES
   Design: Vibrant, Artistic, Unique
   ======================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff5e6 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #8B4789 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #8B4789;
  position: relative;
  display: inline-block;
}

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

h3 {
  font-size: 24px;
  color: #2C3E50;
}

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

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

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

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-content {
  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, 71, 137, 0.2));
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B4789 0%, #D4AF37 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #8B4789;
}

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

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

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #8B4789 0%, #2C3E50 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  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 white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #D4AF37;
  transform: translateX(10px);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease;
}

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 1.4s ease;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #8B4789;
  padding: 10px 20px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.15);
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #8B4789 0%, #D4AF37 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 71, 137, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 71, 137, 0.4);
}

.btn-secondary {
  background: white;
  color: #8B4789;
  border: 2px solid #8B4789;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.15);
}

.btn-secondary:hover {
  background: #8B4789;
  color: white;
  transform: translateY(-3px);
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

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

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

.value-card {
  flex: 1;
  min-width: 280px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff5e6 100%);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8B4789 0%, #D4AF37 100%);
  border-radius: 15px 15px 0 0;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
  border-color: #D4AF37;
}

.value-card h3 {
  color: #8B4789;
  margin-bottom: 15px;
}

/* SERVICES SHOWCASE */
.services-showcase {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 71, 137, 0.05) 100%);
  border-radius: 20px;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  transition: all 0.4s ease;
  border-top: 5px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.service-card:hover::after {
  top: -50%;
  left: -50%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 71, 137, 0.25);
  border-top-color: #8B4789;
}

.service-card h3 {
  color: #8B4789;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

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

/* PROCESS SECTION */
.process {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8B4789 0%, #D4AF37 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(139, 71, 137, 0.3);
  font-family: 'Playfair Display', serif;
}

.step h3 {
  margin-bottom: 10px;
  color: #8B4789;
}

/* DETAILED PROCESS */
.detailed-process {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.1);
  border-left: 5px solid #D4AF37;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(139, 71, 137, 0.2);
  border-left-color: #8B4789;
}

.step-content h2 {
  margin-bottom: 15px;
}

.step-details {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 10px;
}

/* SOCIAL PROOF */
.social-proof {
  background: linear-gradient(135deg, #8B4789 0%, #2C3E50 100%);
  border-radius: 20px;
  color: white;
}

.social-proof h2 {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.social-proof h2::after {
  background: #D4AF37;
}

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

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

.author {
  color: #D4AF37;
  font-weight: 700;
  font-style: normal;
}

.stats-bar {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stats-bar span {
  font-size: 18px;
  font-weight: 700;
  color: #D4AF37;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 20px;
  text-align: center;
  padding: 80px 20px;
}

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

.cta-banner p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #8B4789 0%, #2C3E50 100%);
  color: white;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 20px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: #D4AF37;
}

/* PRODUCTS GRID */
.products {
  margin-bottom: 60px;
}

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

.product-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  transition: all 0.4s ease;
  border-top: 5px solid #8B4789;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(139, 71, 137, 0.25);
  border-top-color: #D4AF37;
}

.product-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.product-features p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* CUSTOMIZATION */
.customization {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

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

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

.option {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  padding: 30px 25px;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff5e6 100%);
  border-radius: 15px;
  text-align: center;
  border: 2px solid #D4AF37;
  transition: all 0.3s ease;
}

.option:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
}

.option h3 {
  color: #8B4789;
  font-size: 20px;
  margin-bottom: 10px;
}

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

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

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

.faq-item {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 71, 137, 0.1);
  border-left: 5px solid #D4AF37;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.2);
  border-left-color: #8B4789;
}

.faq-item h3 {
  color: #8B4789;
  margin-bottom: 15px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 20px;
}

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

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* BENEFITS */
.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.benefit-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  text-align: center;
  border-top: 5px solid #D4AF37;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
}

.benefit-card h3 {
  color: #8B4789;
  margin-bottom: 15px;
}

/* PACKAGES */
.packages h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.package-card {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  padding: 50px 30px;
  background: linear-gradient(135deg, white 0%, #f8f4f0 100%);
  border-radius: 20px;
  text-align: center;
  border: 3px solid #D4AF37;
  box-shadow: 0 10px 35px rgba(139, 71, 137, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #8B4789 0%, #D4AF37 100%);
  border-radius: 20px 20px 0 0;
}

.package-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(139, 71, 137, 0.25);
  border-color: #8B4789;
}

.package-card h3 {
  color: #8B4789;
  font-size: 28px;
  margin-bottom: 15px;
}

.package-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* BRANDING */
.branding h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

/* DELIVERY OPTIONS */
.delivery-options h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.option-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  border: 2px solid #D4AF37;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
  border-color: #8B4789;
}

.option-card h3 {
  color: #8B4789;
  margin-bottom: 15px;
}

/* PACKAGING */
.packaging {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

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

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

.packaging-option {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  padding: 30px 25px;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff5e6 100%);
  border-radius: 15px;
  text-align: center;
  border-top: 5px solid #D4AF37;
  transition: all 0.3s ease;
}

.packaging-option:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
}

.packaging-option h3 {
  color: #8B4789;
  margin-bottom: 10px;
}

/* PAYMENT METHODS */
.payment-methods h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.payment-method {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  padding: 30px 25px;
  background: white;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(139, 71, 137, 0.1);
  border: 2px solid #D4AF37;
  transition: all 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
}

.payment-method h3 {
  color: #8B4789;
  margin-bottom: 10px;
}

.security-note {
  text-align: center;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* GUARANTEES */
.guarantees h2 {
  text-align: center;
  margin-bottom: 50px;
}

.guarantees-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.guarantee {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  padding: 30px 25px;
  background: linear-gradient(135deg, #8B4789 0%, #2C3E50 100%);
  color: white;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.2);
  transition: all 0.3s ease;
}

.guarantee:hover {
  transform: scale(1.05);
}

.guarantee h3 {
  color: #D4AF37;
  margin-bottom: 10px;
}

.guarantee p {
  color: white;
}

/* BRAND STORY */
.brand-story {
  max-width: 900px;
  margin: 0 auto;
}

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

.story-content {
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
  border-left: 5px solid #D4AF37;
}

.story-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.mission {
  padding: 30px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 15px;
  margin-top: 30px;
  text-align: center;
}

.tagline {
  text-align: center;
  font-size: 20px;
  color: #8B4789;
  font-style: italic;
  font-weight: 600;
}

/* VALUES */
.values h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

/* PHILOSOPHY */
.philosophy h2 {
  text-align: center;
  margin-bottom: 50px;
}

.philosophy-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.philosophy-item {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 30px 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 71, 137, 0.1);
  border-top: 5px solid #8B4789;
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(139, 71, 137, 0.2);
}

.philosophy-item h3 {
  color: #8B4789;
  margin-bottom: 10px;
}

/* SHOWROOM */
.showroom {
  background: linear-gradient(135deg, #8B4789 0%, #2C3E50 100%);
  color: white;
  border-radius: 20px;
  text-align: center;
}

.showroom h2 {
  color: white;
  margin-bottom: 20px;
}

.showroom h2::after {
  background: #D4AF37;
}

.showroom-info {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.showroom-info p {
  color: white;
  margin-bottom: 15px;
}

/* ACHIEVEMENTS */
.achievements h2 {
  text-align: center;
  margin-bottom: 50px;
}

.achievements-timeline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.achievement {
  padding: 20px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 71, 137, 0.1);
  border-left: 5px solid #D4AF37;
  transition: all 0.3s ease;
  min-width: 200px;
}

.achievement:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
  border-left-color: #8B4789;
}

.achievement strong {
  color: #8B4789;
  font-size: 18px;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 30px;
}

/* CONTACT */
.contact-methods h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.method-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 50px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.15);
  text-align: center;
  border-top: 5px solid #D4AF37;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(139, 71, 137, 0.25);
}

.method-card h3 {
  color: #8B4789;
  margin-bottom: 20px;
}

.method-value {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}

.method-note {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

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

.location-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

.address {
  font-size: 18px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.transport-info p {
  margin-bottom: 10px;
}

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

.hours-list {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}

.hours-list p:last-child {
  border-bottom: none;
}

.corporate-contact {
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 20px;
  text-align: center;
}

.corporate-contact h2 {
  margin-bottom: 20px;
}

.corporate-email {
  font-size: 20px;
  font-weight: 700;
  color: #8B4789;
  margin: 30px 0;
}

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

.legal-section {
  margin-bottom: 40px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.1);
  border-left: 5px solid #D4AF37;
}

.legal-section h2 {
  color: #8B4789;
  margin-bottom: 20px;
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.legal-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.last-update {
  text-align: center;
  font-size: 14px;
  color: #888;
  font-style: italic;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #f4d976 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
  animation: successPop 0.6s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.confirmation {
  text-align: center;
}

.confirmation-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.1);
}

.confirmation-content p {
  font-size: 18px;
  line-height: 1.8;
}

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

.steps-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.steps-list .step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  border-top: 5px solid #D4AF37;
}

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

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

.explore-link {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 30px;
  background: linear-gradient(135deg, #8B4789 0%, #2C3E50 100%);
  color: white;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.2);
  transition: all 0.3s ease;
}

.explore-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.3);
}

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

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

.alternative {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.12);
  text-align: center;
}

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

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

.footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-contact,
.footer-links,
.footer-legal {
  flex: 1;
  min-width: 200px;
}

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

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

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

footer a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 10px;
}

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

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

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #D4AF37 0%, #f4d976 100%);
  color: #2C3E50;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

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

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

.cookie-btn-settings:hover {
  background: #D4AF37;
  color: #2C3E50;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #888;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f0f0f0;
  color: #2C3E50;
}

.cookie-modal h2 {
  color: #8B4789;
  margin-bottom: 30px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f4f0;
  border-radius: 15px;
  border-left: 5px solid #D4AF37;
}

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

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

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #8B4789;
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges {
    gap: 15px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    margin-bottom: 30px;
  }
  
  /* Grids */
  .three-column-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .benefits-grid,
  .packages-grid,
  .options-grid,
  .payment-grid,
  .guarantees-list,
  .values-grid,
  .philosophy-list,
  .methods-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .value-card,
  .service-card,
  .product-card,
  .step,
  .testimonial-card,
  .benefit-card,
  .package-card,
  .option-card,
  .payment-method,
  .guarantee,
  .method-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  /* Process */
  .process-step {
    flex-direction: column;
    padding: 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    max-width: 100%;
  }
  
  /* Cookie */
  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  /* Text Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Hours List */
  .hours-list p {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .price {
    font-size: 24px;
  }
  
  .package-price {
    font-size: 28px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  * {
    box-shadow: none !important;
  }
}
.page-hero p, .showroom p  {
  color: white;
}

.testimonial-card p {
  color:#D4AF37;
}