/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.6;
  color: #2D3142;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography - Warm & Friendly */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #8B4A5F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2D3142;
}

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

a:hover {
  color: #A05B70;
}

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

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

/* Header - Warm & Welcoming */
header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(139, 74, 95, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #FDF7F7;
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2D3142;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FDF7F7;
  color: #8B4A5F;
}

/* Buttons - Warm & Inviting */
.cta-button, .btn-primary {
  background-color: #C17B8F;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #C17B8F;
  box-shadow: 0 4px 12px rgba(193, 123, 143, 0.3);
}

.cta-button:hover, .btn-primary:hover {
  background-color: #A05B70;
  border-color: #A05B70;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(193, 123, 143, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: #8B4A5F;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #C17B8F;
}

.btn-secondary:hover {
  background-color: #FDF7F7;
  border-color: #A05B70;
  color: #8B4A5F;
  transform: translateY(-2px);
}

.btn, .btn-link {
  background-color: #C17B8F;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: #A05B70;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-link {
  background-color: transparent;
  color: #8B4A5F;
  text-decoration: underline;
  padding: 8px 16px;
}

.btn-link:hover {
  color: #A05B70;
  background-color: transparent;
  transform: translateY(0);
}

/* Mobile Menu - Hidden by default */
.mobile-menu-toggle {
  display: none;
  background-color: #C17B8F;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(193, 123, 143, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #8B4A5F;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #A05B70;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2D3142;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: #FDF7F7;
}

.mobile-nav a:hover {
  background-color: #C17B8F;
  color: #FFFFFF;
  transform: translateX(5px);
}

/* Hero Section - Warm & Inviting */
.hero {
  background: linear-gradient(135deg, #FDF7F7 0%, #F4E8E8 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.hero h1 {
  color: #8B4A5F;
  margin-bottom: 20px;
  font-size: 48px;
}

.subheadline {
  font-size: 20px;
  color: #2D3142;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* Section Styles */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction, .services-intro, .gallery-intro, .our-story, .pricing-intro, .contact-intro {
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.intro-text {
  font-size: 20px;
  color: #8B4A5F;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #2D3142;
  margin-bottom: 32px;
}

/* Services Grid - Flexbox Layout */
.services-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card, .service-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover, .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(193, 123, 143, 0.2);
}

.service-card h3, .service-item h3 {
  color: #8B4A5F;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p, .service-item p {
  color: #2D3142;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price, .service-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #C17B8F;
  margin-bottom: 16px;
}

.service-item .duration {
  font-size: 14px;
  color: #2D3142;
  display: block;
  margin-bottom: 12px;
}

/* Benefits Grid */
.benefits-grid, .features-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item, .feature-item, .value-item {
  background-color: #FDF7F7;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.benefit-item:hover, .feature-item:hover, .value-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(193, 123, 143, 0.15);
  transform: translateY(-4px);
}

.benefit-item img, .feature-item img, .value-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.benefit-item h3, .feature-item h3, .value-item h3 {
  color: #8B4A5F;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Testimonials - High Contrast */
.testimonials {
  background-color: #FDF7F7;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #8B4A5F;
  font-style: normal;
  font-size: 14px;
}

/* CTA Banner - Warm & Prominent */
.cta-banner {
  background: linear-gradient(135deg, #C17B8F 0%, #A05B70 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 6px 20px rgba(193, 123, 143, 0.3);
}

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

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

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #C17B8F;
  margin-bottom: 16px;
}

.cta-banner .btn-primary:hover {
  background-color: #FDF7F7;
  color: #8B4A5F;
}

.contact-info {
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 16px;
}

.contact-info a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #FDF7F7;
}

/* Location & Hours */
.location-hours {
  padding: 60px 20px;
  background-color: #FDF7F7;
  border-radius: 30px;
  margin-bottom: 60px;
}

.location-grid, .location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 32px;
}

.address-info, .hours-info {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
}

.address-info p, .hours-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #2D3142;
}

/* Gallery Styles */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.gallery-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(193, 123, 143, 0.2);
}

.gallery-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #FDF7F7 0%, #F4E8E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item .caption {
  padding: 16px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #2D3142;
  text-align: center;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: #FDF7F7;
  color: #8B4A5F;
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: #C17B8F;
  color: #FFFFFF;
  border-color: #C17B8F;
}

/* Pricing Tables */
.pricing-table {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.price-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.price-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(193, 123, 143, 0.2);
  border-color: #C17B8F;
}

.price-item.popular, .price-item.special {
  border-color: #C17B8F;
  background-color: #FDF7F7;
}

.price-item h3 {
  color: #8B4A5F;
  font-size: 22px;
  margin-bottom: 8px;
}

.price-item .price {
  font-size: 32px;
  font-weight: 700;
  color: #C17B8F;
  margin-top: 12px;
}

.price-item .duration {
  font-size: 14px;
  color: #2D3142;
  display: block;
}

.badge {
  background-color: #C17B8F;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

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

.special-price {
  font-size: 32px;
  font-weight: 700;
  color: #C17B8F;
  display: block;
  margin-bottom: 8px;
}

.savings {
  font-size: 14px;
  color: #8B4A5F;
  font-weight: 600;
}

/* Packages */
.packages {
  padding: 60px 20px;
  background-color: #FDF7F7;
  border-radius: 30px;
  margin-bottom: 60px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.package-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(193, 123, 143, 0.2);
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.method-item {
  background-color: #FDF7F7;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  margin-bottom: 20px;
}

.method-item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.method-item .value {
  font-size: 18px;
  font-weight: 600;
  color: #8B4A5F;
  margin-bottom: 12px;
}

.method-item .value a {
  color: #8B4A5F;
}

.method-item .description {
  font-size: 14px;
  color: #2D3142;
}

/* Forms */
.booking-form-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.form-container {
  max-width: 600px;
  margin: 40px auto 0;
}

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

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

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

.form-input {
  padding: 14px 16px;
  border: 2px solid #F4E8E8;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}

.form-input:focus {
  outline: none;
  border-color: #C17B8F;
  box-shadow: 0 0 0 3px rgba(193, 123, 143, 0.1);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.checkbox-group label {
  font-size: 14px;
  color: #2D3142;
  line-height: 1.6;
}

.form-note {
  font-size: 14px;
  color: #2D3142;
  text-align: center;
  margin-top: 16px;
}

/* Schedule */
.hours-schedule {
  padding: 60px 20px;
  background-color: #FDF7F7;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(139, 74, 95, 0.05);
}

.schedule-item .day {
  font-weight: 600;
  color: #2D3142;
  font-size: 16px;
}

.schedule-item .hours {
  color: #8B4A5F;
  font-weight: 500;
  font-size: 16px;
}

.appointment-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #2D3142;
  font-style: italic;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #FDF7F7 0%, #F4E8E8 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #C17B8F;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(193, 123, 143, 0.3);
}

.thank-you-content {
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.step-item {
  background-color: #FDF7F7;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #C17B8F;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-note {
  text-align: center;
  font-size: 16px;
  color: #2D3142;
  margin-top: 24px;
}

.next-steps {
  background-color: #FDF7F7;
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}

/* Page Hero Simple */
.page-hero, .page-hero-simple {
  background: linear-gradient(135deg, #FDF7F7 0%, #F4E8E8 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.page-hero h1, .page-hero-simple h1 {
  color: #8B4A5F;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p, .page-hero-simple p {
  font-size: 18px;
  color: #2D3142;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: #8B4A5F;
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section p {
  color: #2D3142;
  line-height: 1.8;
}

blockquote {
  background-color: #FDF7F7;
  border-left: 4px solid #C17B8F;
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  border-radius: 8px;
}

/* Mission & Vision */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.mission, .vision {
  background-color: #FDF7F7;
  border-radius: 20px;
  padding: 40px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

/* Styles Grid */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.style-item {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(139, 74, 95, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
}

.style-item h3 {
  color: #8B4A5F;
  margin-bottom: 12px;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto 0;
}

.features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #FDF7F7;
  border-radius: 12px;
  flex-direction: row;
  text-align: left;
}

.features-list .feature-item img {
  width: 24px;
  height: 24px;
  margin: 0;
}

/* Contact Info Grid */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-item {
  background-color: #FDF7F7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
}

.contact-item img {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}

/* Footer - Warm & Friendly */
footer {
  background-color: #2D3142;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-col h4 {
  color: #C17B8F;
  font-size: 20px;
  margin-bottom: 16px;
}

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

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

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

.footer-col nav a:hover {
  color: #C17B8F;
  transform: translateX(4px);
}

.footer-col a {
  color: #C17B8F;
}

.footer-col a:hover {
  color: #A05B70;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: #FFFFFF;
  font-size: 12px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
  color: #C17B8F;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D3142;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #FFFFFF;
}

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

.cookie-banner button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.cookie-accept {
  background-color: #C17B8F;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #A05B70;
}

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

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

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

.cookie-settings:hover {
  background-color: rgba(193, 123, 143, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal h2 {
  color: #8B4A5F;
  margin-bottom: 24px;
}

.cookie-category {
  border-bottom: 1px solid #F4E8E8;
  padding: 20px 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

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

.cookie-toggle.active {
  background-color: #C17B8F;
}

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

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-save {
  background-color: #C17B8F;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.cookie-save:hover {
  background-color: #A05B70;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card, .service-item {
    flex: 1 1 100%;
  }
  
  .benefit-item, .feature-item, .value-item {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .gallery-item {
    flex: 1 1 100%;
  }
  
  .price-item {
    flex: 1 1 100%;
  }
  
  .package-item {
    flex: 1 1 100%;
  }
  
  .method-item {
    flex: 1 1 100%;
  }
  
  .mission, .vision {
    flex: 1 1 100%;
  }
  
  .style-item {
    flex: 1 1 100%;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-banner p {
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .service-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .benefit-item, .feature-item, .value-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .price-item {
    flex: 1 1 calc(50% - 12px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: #C17B8F;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #C17B8F;
  color: #FFFFFF;
}