/* ===================================
   MYSTIC FLOWER DETAILING - CSS
   Design Style: Gradient Modern
   =================================== */

/* 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #7b68ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

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

a:hover {
  color: #6a5acd;
  text-decoration: underline;
}

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

ul, ol { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 8px; color: #2c3e50; }

blockquote {
  border-left: 4px solid #7b68ee;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #5a5a7a;
  background: rgba(123, 104, 238, 0.05);
  padding: 20px;
  border-radius: 8px;
}

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

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

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7b68ee, #e8d5c4);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(123, 104, 238, 0.2);
  text-decoration: none;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #7b68ee 0%, #6a5acd 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(123, 104, 238, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a2e 0%, #2d3561 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  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.1);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(123, 104, 238, 0.3);
  border-left-color: #e8d5c4;
  transform: translateX(5px);
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  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(232, 213, 196, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 20px;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

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

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: white;
}

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

.page-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.last-updated, .trust-badge {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #7b68ee 0%, #6a5acd 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(123, 104, 238, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #e8d5c4 0%, #d4bfaa 100%);
  color: #1a1a2e;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 213, 196, 0.4);
  text-decoration: none;
}

.btn-link {
  color: #7b68ee;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #6a5acd;
  transform: translateX(5px);
}

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

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a5a7a;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5a5a7a;
  margin-bottom: 32px;
}

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

/* CARDS & GRIDS */
.services-grid,
.features-grid,
.testimonials-grid,
.reasons-grid,
.promises-grid,
.packages-grid,
.addons-grid,
.addons-pricing-grid,
.trust-grid,
.location-grid,
.stats-grid,
.types-grid,
.results-grid,
.suggestions-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.service-card,
.feature,
.testimonial-card,
.reason,
.promise,
.package-card,
.addon-item,
.addon-price-item,
.trust-item,
.location-item,
.stat-card,
.type-item,
.result-category,
.suggestion-card,
.contact-method {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover,
.feature:hover,
.reason:hover,
.promise:hover,
.package-card:hover,
.type-item:hover,
.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.2);
}

.service-card h3,
.feature h3,
.reason h3,
.promise h3,
.package-card h3,
.type-item h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #7b68ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card .price,
.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #7b68ee;
  margin: 16px 0;
}

.original-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #999;
  display: block;
  margin-top: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
}

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

.testimonial-card .author {
  color: #7b68ee;
  font-weight: 600;
  font-style: italic;
  margin-top: 16px;
}

.review-count {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 32px;
}

/* PROCESS STEPS */
.steps,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step,
.process-step {
  flex: 1 1 250px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step:hover,
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7b68ee 0%, #6a5acd 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

/* SERVICE DETAILS */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.service-detail-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #7b68ee;
  position: relative;
}

.service-detail-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.2);
}

.service-detail-card.popular::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #7b68ee, #e8d5c4);
  border-radius: 16px;
  z-index: -1;
}

.service-detail-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.service-meta {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
  align-items: center;
}

.duration {
  color: #5a5a7a;
  font-size: 14px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #7b68ee;
}

.warranty {
  color: #27ae60;
  font-weight: 600;
  background: rgba(39, 174, 96, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin: 12px 0;
}

.badge {
  background: linear-gradient(135deg, #7b68ee 0%, #6a5acd 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-left: 8px;
}

/* PRICING TABLES */
.price-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.price-row {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e8ebf0;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 16px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.05) 0%, rgba(232, 213, 196, 0.05) 100%);
}

.price-row.best-value,
.price-row.popular {
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, rgba(232, 213, 196, 0.08) 100%);
  border-left: 4px solid #7b68ee;
}

.service-name {
  flex: 2 1 200px;
  font-weight: 600;
  color: #1a1a2e;
}

.service-duration {
  flex: 1 1 100px;
  color: #5a5a7a;
  font-size: 14px;
}

.service-price {
  flex: 0 0 80px;
  font-size: 24px;
  font-weight: 700;
  color: #7b68ee;
  text-align: right;
}

.service-action {
  flex: 0 0 100px;
  text-align: right;
}

.savings-note {
  text-align: center;
  color: #27ae60;
  font-weight: 600;
  margin-top: 16px;
  padding: 12px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 8px;
}

/* SURCHARGE TABLE */
.surcharge-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.surcharge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e8ebf0;
  flex-wrap: wrap;
  gap: 16px;
}

.surcharge-row:last-child {
  border-bottom: none;
}

.vehicle-type {
  font-weight: 600;
  color: #1a1a2e;
  flex: 1 1 200px;
}

.surcharge {
  color: #7b68ee;
  font-weight: 700;
  font-size: 18px;
  flex: 0 0 100px;
  text-align: right;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #7b68ee;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(123, 104, 238, 0.15);
  transform: translateX(5px);
}

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

.faq-item p {
  color: #5a5a7a;
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 213, 196, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* CONTACT FORMS */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a2e;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8ebf0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #7b68ee;
  box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note {
  background: rgba(123, 104, 238, 0.1);
  border-left: 4px solid #7b68ee;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-promise {
  text-align: center;
  color: #27ae60;
  font-weight: 600;
  margin-top: 16px;
}

/* LOCATION & HOURS */
.hours-table {
  width: 100%;
  margin-top: 16px;
}

.hours-table tr {
  border-bottom: 1px solid #e8ebf0;
}

.hours-table td {
  padding: 12px 8px;
  color: #2c3e50;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #1a1a2e;
}

/* STATISTICS */
.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #7b68ee 0%, #6a5acd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: #5a5a7a;
  font-size: 16px;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 36px;
  color: #7b68ee;
  margin-bottom: 8px;
}

/* PAYMENT METHODS */
.payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.payment-icons span {
  background: white;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: #1a1a2e;
}

/* GUARANTEE & VALUES */
.values-grid,
.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-item,
.guarantee-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-item:hover,
.guarantee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(123, 104, 238, 0.2);
}

.value-item h4,
.guarantee-item h3 {
  color: #7b68ee;
  margin-bottom: 12px;
}

/* MISSION & VISION */
.mission-cards {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.mission-card {
  flex: 1 1 400px;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, rgba(232, 213, 196, 0.08) 100%);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #7b68ee;
}

.mission-card h3 {
  color: #1a1a2e;
  margin-bottom: 16px;
}

/* STORY & TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.text-section ul {
  list-style: none;
  padding: 0;
}

.text-section ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.text-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7b68ee;
  font-weight: 700;
}

.expertise {
  background: rgba(123, 104, 238, 0.05);
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

/* GALLERY & SHOWCASE */
.showcase-grid,
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.showcase-item,
.project-card {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.showcase-item:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.2);
}

.service-tags {
  color: #7b68ee;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8ebf0;
}

/* THANK YOU PAGE */
.confirmation-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.thankyou-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto 0;
}

.thankyou-nav a {
  padding: 16px 24px;
  background: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thankyou-nav a:hover {
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(232, 213, 196, 0.1) 100%);
  transform: translateX(5px);
}

.tips-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 24px auto;
}

.tips-list li {
  padding: 16px 20px 16px 48px;
  background: white;
  margin-bottom: 16px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tips-list li::before {
  content: '•';
  position: absolute;
  left: 20px;
  color: #7b68ee;
  font-size: 24px;
  font-weight: 700;
}

/* LEGAL PAGES */
.info-banner {
  background: rgba(123, 104, 238, 0.1);
  border-left: 4px solid #7b68ee;
  padding: 20px;
  border-radius: 8px;
  margin: 32px 0;
}

.info-banner p {
  margin-bottom: 8px;
}

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

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

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

.footer-section h3 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  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;
  color: white;
}

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

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

.cookie-accept {
  background: #27ae60;
  color: white;
}

.cookie-accept:hover {
  background: #229954;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(123, 104, 238, 0.05);
  border-radius: 8px;
}

.cookie-category h4 {
  margin-bottom: 12px;
  color: #1a1a2e;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile menu visible */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Section padding */
  section { padding: 40px 16px; }
  
  /* Cards and grids */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .steps,
  .process-steps {
    gap: 16px;
  }
  
  .service-card,
  .feature,
  .step,
  .process-step {
    flex: 1 1 100%;
    padding: 20px;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Form */
  .form-container {
    padding: 24px;
  }
  
  /* Stats */
  .team-stats {
    gap: 24px;
  }
  
  /* Price table */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .service-price,
  .service-action {
    text-align: left;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none; }

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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