/* =================================================================
   RARE SAND TIERPFLEGE - ELEGANT CLASSIC DESIGN
   Timeless elegance with refined elements for premium pet care
   ================================================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2416;
  background-color: #FFF8F0;
  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 - ELEGANT CLASSIC STYLE
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C2416;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

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

strong {
  font-weight: 600;
  color: #2C2416;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   HEADER - ELEGANT CLASSIC
   ================================================================= */

header {
  background-color: #FFF8F0;
  border-bottom: 2px solid #E5D5C0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44, 36, 22, 0.08);
}

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

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

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

.main-nav a {
  font-size: 16px;
  color: #2C2416;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C85A1A;
  border-bottom-color: #C85A1A;
}

/* =================================================================
   MOBILE MENU - ELEGANT SLIDE-IN
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #C85A1A;
  color: #FFF8F0;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(200, 90, 26, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFF8F0;
  z-index: 999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(44, 36, 22, 0.15);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C2416;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  padding: 20px 0;
  font-size: 18px;
  color: #2C2416;
  border-bottom: 1px solid #E5D5C0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C85A1A;
  padding-left: 10px;
}

/* =================================================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ================================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background-color: #C85A1A;
  color: #FFF8F0;
  border-color: #C85A1A;
}

.btn-primary:hover {
  background-color: #8B3D0F;
  border-color: #8B3D0F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 90, 26, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #C85A1A;
  border-color: #C85A1A;
}

.btn-secondary:hover {
  background-color: #C85A1A;
  color: #FFF8F0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 90, 26, 0.2);
}

/* =================================================================
   HERO SECTION - ELEGANT CLASSIC
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #F5E8D8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #E5D5C0;
}

.hero h1 {
  font-size: 48px;
  color: #2C2416;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline {
  font-size: 18px;
  color: #4A3D2E;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  font-size: 14px;
  color: #4A3D2E;
  padding: 8px 16px;
  background-color: rgba(200, 90, 26, 0.08);
  border-radius: 4px;
  font-weight: 500;
}

/* =================================================================
   HERO INTERNAL - ELEGANT BREADCRUMB
   ================================================================= */

.hero-internal {
  background: linear-gradient(135deg, #FFF8F0 0%, #F5E8D8 100%);
  padding: 60px 20px 40px;
  border-bottom: 2px solid #E5D5C0;
}

.breadcrumb {
  font-size: 14px;
  color: #4A3D2E;
  margin-bottom: 20px;
}

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

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

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #4A3D2E;
}

/* =================================================================
   FEATURES SECTION - ELEGANT LAYOUT
   ================================================================= */

.features {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #4A3D2E;
  margin-bottom: 48px;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 300px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.feature-item img {
  width: 60px;
  height: 60px;
}

.feature-item h3 {
  margin-bottom: 8px;
}

.feature-item p {
  color: #4A3D2E;
  margin-bottom: 0;
}

/* =================================================================
   SERVICE CARDS - ELEGANT CLASSIC
   ================================================================= */

.services-preview {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.12);
  border-color: #C85A1A;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

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

.service-card p {
  color: #4A3D2E;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #C85A1A;
  padding: 12px 24px;
  background-color: rgba(200, 90, 26, 0.08);
  border-radius: 4px;
}

.services-preview .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* =================================================================
   SERVICE DETAIL PAGES - ELEGANT LAYOUT
   ================================================================= */

.services-overview {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.service-detail {
  padding: 40px 20px;
  background-color: #FFF8F0;
  margin-bottom: 40px;
}

.service-detail:nth-child(even) {
  background-color: #FFFFFF;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-header img {
  width: 80px;
  height: 80px;
}

.service-header div {
  flex: 1;
}

.service-header h2 {
  margin-bottom: 8px;
}

.service-header .price {
  font-size: 18px;
  font-weight: 600;
  color: #C85A1A;
}

.service-detail ul {
  margin-top: 16px;
  padding-left: 24px;
}

.service-detail li {
  margin-bottom: 12px;
  color: #4A3D2E;
  position: relative;
  list-style: none;
}

.service-detail li::before {
  content: "✓";
  position: absolute;
  left: -24px;
  color: #C85A1A;
  font-weight: bold;
}

/* =================================================================
   TESTIMONIALS - ELEGANT CLASSIC WITH HIGH CONTRAST
   ================================================================= */

.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(44, 36, 22, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.12);
  border-color: #C85A1A;
}

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

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

.testimonial-card .rating {
  color: #C85A1A;
  font-size: 18px;
}

.testimonials-visual {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.testimonial-single {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonial-single h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

/* =================================================================
   CTA BANNER - ELEGANT CLASSIC
   ================================================================= */

.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C85A1A 0%, #8B3D0F 100%);
  text-align: center;
  color: #FFF8F0;
}

.cta-banner h2 {
  color: #FFF8F0;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #FFF8F0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #FFF8F0;
  color: #C85A1A;
  border-color: #FFF8F0;
}

.cta-banner .btn-primary:hover {
  background-color: transparent;
  color: #FFF8F0;
  border-color: #FFF8F0;
}

/* =================================================================
   PRICING - ELEGANT CLASSIC
   ================================================================= */

.pricing-intro {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.pricing-table {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 48px;
}

.price-category {
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
}

.price-category h3 {
  font-size: 24px;
  color: #C85A1A;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E5D5C0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #F5E8D8;
  flex-wrap: wrap;
  gap: 16px;
}

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

.price-item span:first-child {
  color: #2C2416;
  font-size: 16px;
}

.price-item .price {
  font-size: 18px;
  font-weight: 600;
  color: #C85A1A;
}

.discounts {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.discount-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 280px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.discount-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.discount-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.discount-item h3 {
  margin-bottom: 12px;
}

.discount-item p {
  font-size: 16px;
  color: #C85A1A;
  font-weight: 600;
  margin-bottom: 0;
}

/* =================================================================
   GALLERY - ELEGANT CLASSIC
   ================================================================= */

.gallery-intro {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.gallery-categories {
  padding: 40px 20px;
  background-color: #FFF8F0;
}

.gallery-categories h2 {
  text-align: center;
  margin-bottom: 32px;
}

.category-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2C2416;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #C85A1A;
  color: #FFF8F0;
  border-color: #C85A1A;
}

.gallery-grid {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.gallery-placeholder {
  background-color: #FFF8F0;
  border: 2px dashed #E5D5C0;
  border-radius: 8px;
  padding: 80px 40px;
  text-align: center;
}

.gallery-placeholder p {
  font-size: 18px;
  color: #4A3D2E;
}

/* =================================================================
   CONTACT PAGE - ELEGANT CLASSIC
   ================================================================= */

.contact-options {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 280px;
  padding: 40px 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.contact-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.contact-item h3 {
  margin-bottom: 12px;
}

.contact-item .note {
  font-size: 14px;
  color: #C85A1A;
  font-style: italic;
  margin-top: 8px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
}

.form-placeholder p {
  margin-bottom: 16px;
}

.form-placeholder ul {
  padding-left: 24px;
}

.form-placeholder li {
  margin-bottom: 8px;
  color: #4A3D2E;
}

.map-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.map-placeholder {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  background-color: #FFF8F0;
  border: 2px dashed #E5D5C0;
  border-radius: 8px;
  text-align: center;
}

.location-info {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.info-item {
  flex: 1 1 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  margin-bottom: 20px;
}

.info-item h3 {
  color: #C85A1A;
  margin-bottom: 16px;
}

.opening-hours {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.hours-list {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  padding: 32px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E5D5C0;
}

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

.hours-item .day {
  font-weight: 600;
  color: #2C2416;
}

.hours-item .time {
  color: #4A3D2E;
}

.hours-list .note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #E5D5C0;
  font-size: 14px;
  color: #4A3D2E;
  font-style: italic;
}

/* =================================================================
   ABOUT / STORY SECTIONS - ELEGANT CLASSIC
   ================================================================= */

.story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
}

.mission-vision {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.mission-vision h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.philosophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 400px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.philosophy-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.philosophy-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.team {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.team-member {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member .role {
  font-size: 14px;
  color: #C85A1A;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* =================================================================
   LEGAL PAGES - ELEGANT CLASSIC
   ================================================================= */

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #C85A1A;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 12px;
  color: #4A3D2E;
}

.cookie-settings {
  padding: 60px 20px;
  background-color: #FFF8F0;
  text-align: center;
}

.cookie-settings h2 {
  margin-bottom: 16px;
}

.cookie-settings p {
  margin-bottom: 32px;
  font-size: 18px;
}

.terms-summary {
  padding: 60px 20px;
  background-color: #FFF8F0;
}

.terms-summary h2 {
  text-align: center;
  margin-bottom: 32px;
}

.terms-summary ul {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px 40px;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
}

.terms-summary li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  color: #2C2416;
  font-size: 16px;
}

.terms-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C85A1A;
  font-weight: bold;
  font-size: 18px;
}

/* =================================================================
   THANK YOU PAGE - ELEGANT CLASSIC
   ================================================================= */

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #F5E8D8 100%);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #C85A1A;
  color: #FFF8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(200, 90, 26, 0.3);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  color: #4A3D2E;
}

.confirmation-details,
.next-steps,
.contact-alternatives,
.thank-you-content {
  padding: 60px 20px;
}

.confirmation-details {
  background-color: #FFFFFF;
}

.next-steps {
  background-color: #FFF8F0;
}

.contact-alternatives {
  background-color: #FFFFFF;
}

.thank-you-content {
  background-color: #FFFFFF;
}

.confirmation-details h2,
.next-steps h2,
.contact-alternatives h2,
.thank-you-content h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 280px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  margin-bottom: 20px;
}

.step-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.response-time {
  text-align: center;
  font-size: 16px;
  color: #C85A1A;
  font-weight: 600;
  margin-top: 32px;
}

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

.option-card {
  flex: 1 1 240px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.1);
  border-color: #C85A1A;
}

.option-card h3 {
  margin-bottom: 12px;
}

.option-card p {
  margin-bottom: 20px;
}

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

.contact-method {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #FFF8F0;
  border: 2px solid #E5D5C0;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #C85A1A;
  margin-bottom: 16px;
}

.contact-method .hours {
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5D5C0;
}

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

.contact-info {
  padding: 60px 20px;
  background-color: #FFF8F0;
  text-align: center;
}

/* =================================================================
   FOOTER - ELEGANT CLASSIC
   ================================================================= */

footer {
  background-color: #2C2416;
  color: #FFF8F0;
  padding: 60px 20px 32px;
  border-top: 3px solid #C85A1A;
}

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

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

.footer-section h3 {
  color: #FFF8F0;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(200, 90, 26, 0.5);
}

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

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

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

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

.copyright {
  text-align: center;
  color: #E5D5C0;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 213, 192, 0.2);
}

/* =================================================================
   COOKIE CONSENT BANNER - ELEGANT CLASSIC
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2416;
  color: #FFF8F0;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(44, 36, 22, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #C85A1A;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text h3 {
  color: #FFF8F0;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-banner-text p {
  color: #E5D5C0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-banner .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-banner .btn-accept {
  background-color: #C85A1A;
  color: #FFF8F0;
  border: 2px solid #C85A1A;
}

.cookie-banner .btn-accept:hover {
  background-color: #8B3D0F;
  border-color: #8B3D0F;
}

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

.cookie-banner .btn-settings:hover {
  background-color: rgba(255, 248, 240, 0.1);
}

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

.cookie-banner .btn-reject:hover {
  background-color: rgba(229, 213, 192, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 36, 22, 0.9);
  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: all;
}

.cookie-modal-content {
  background-color: #FFF8F0;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(44, 36, 22, 0.3);
  border: 2px solid #E5D5C0;
}

.cookie-modal h2 {
  color: #2C2416;
  margin-bottom: 24px;
}

.cookie-preference {
  padding: 20px;
  background-color: #FFFFFF;
  border: 2px solid #E5D5C0;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-preference h3 {
  color: #C85A1A;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-preference p {
  font-size: 14px;
  color: #4A3D2E;
  margin-bottom: 12px;
}

.cookie-preference label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #2C2416;
}

.cookie-preference input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-preference input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Feature Grid */
  .feature-grid,
  .service-cards,
  .testimonial-grid,
  .team-grid,
  .philosophy-grid,
  .discount-grid,
  .contact-grid,
  .info-grid,
  .options-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .feature-item,
  .service-card,
  .testimonial-card,
  .team-member,
  .philosophy-item,
  .discount-item,
  .contact-item,
  .info-item,
  .option-card,
  .step-item {
    flex: 1 1 100%;
  }
  
  /* Service Header */
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .btn {
    width: 100%;
  }
  
  /* Tables */
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* Contact Methods */
  .contact-methods {
    flex-direction: column;
  }
  
  /* Action Buttons */
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .action-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  
  .feature-grid,
  .service-cards {
    gap: 24px;
  }
  
  .feature-item,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

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

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

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

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

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #C85A1A;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}