/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  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.6;
  color: #333;
  background-color: #FFFBF5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY - WARM & FRIENDLY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F4F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #555;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   BUTTONS - WARM & INVITING
   ======================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2C5F4F;
  border: 2px solid #2C5F4F;
}

.btn-secondary:hover {
  background: #2C5F4F;
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background: rgba(255, 251, 245, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C5F4F;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B4513;
  transition: width 0.3s ease;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
  transition: transform 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFBF5 0%, #F5EDE0 100%);
  box-shadow: -5px 0 25px 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;
  width: 40px;
  height: 40px;
  background: #8B4513;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F4F;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #8B4513;
  color: white;
  transform: translateX(8px);
}

/* ========================================
   HERO SECTION - WARM & INVITING
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8D5B7 0%, #F5EDE0 50%, #FFFBF5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #2C5F4F;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   PAGE HERO - WARM VARIATION
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7060 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  color: white;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

.page-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 18px;
  color: #E8D5B7;
  margin-bottom: 0;
}

.page-hero .last-updated,
.page-hero .effective-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

/* ========================================
   VALUE PROPOSITION & CARDS
   ======================================== */

.value-proposition,
.mission-values {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.value-card h3 {
  color: #2C5F4F;
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   SERVICES GRID
   ======================================== */

.featured-services,
.services-grid-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FFFBF5 0%, #F5EDE0 100%);
  margin-bottom: 40px;
}

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

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
  border-color: #E8D5B7;
}

.service-card h3 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.service-meta span {
  padding: 6px 14px;
  background: #E8D5B7;
  color: #2C5F4F;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

.service-card .btn-primary,
.service-card .btn-secondary {
  width: 100%;
  margin-top: auto;
}

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

.cta-link a {
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
  transition: color 0.3s ease;
}

.cta-link a:hover {
  color: #A0522D;
}

/* ========================================
   TWO-COLUMN LAYOUT WITH FLEXBOX
   ======================================== */

.experience-highlights,
.story-section,
.tour-inclusions {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.two-column-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}

.content-left,
.content-right {
  flex: 1 1 300px;
  min-width: 0;
}

.content-left p {
  margin-bottom: 20px;
}

.features-list,
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li,
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #555;
  font-size: 16px;
}

.features-list img,
.checklist img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ========================================
   TEXT-IMAGE SECTIONS WITH PROPER ALIGNMENT
   ======================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.text-image-section .content-left,
.text-image-section .content-right {
  flex: 1 1 300px;
}

/* ========================================
   TESTIMONIALS - WARM & READABLE
   ======================================== */

.testimonials {
  padding: 60px 20px;
  background: white;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 350px;
  max-width: 500px;
  background: linear-gradient(135deg, #F5EDE0 0%, #E8D5B7 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F4F;
  font-size: 16px;
}

.testimonial-card .location {
  color: #8B4513;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #FFB900;
  font-size: 20px;
}

/* ========================================
   STATS GRID
   ======================================== */

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

.stat {
  flex: 1 1 150px;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ========================================
   INFO GRID & CARDS
   ======================================== */

.info-grid,
.categories-grid,
.contact-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.info-card,
.category-card,
.contact-card,
.right-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover,
.category-card:hover,
.contact-card:hover,
.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
}

.info-card h3,
.category-card h3,
.contact-card h3,
.right-card h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
}

.info-card p,
.category-card p,
.contact-card p,
.right-card p {
  color: #666;
  line-height: 1.6;
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.response-time {
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  margin-top: 8px;
}

/* ========================================
   GALLERY & CATEGORIES
   ======================================== */

.gallery-categories {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tab {
  padding: 12px 24px;
  background: white;
  color: #2C5F4F;
  border-radius: 25px;
  font-weight: 600;
  border: 2px solid #E8D5B7;
  transition: all 0.3s ease;
}

.tab:hover,
.tab.active {
  background: #8B4513;
  color: white;
  border-color: #8B4513;
}

.locations-grid,
.articles-grid,
.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.location-card,
.article-card,
.technique-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.location-card:hover,
.article-card:hover,
.technique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(139, 69, 19, 0.15);
}

.article-card .meta {
  font-size: 13px;
  color: #8B4513;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

/* ========================================
   CONTACT FORM - WARM & FRIENDLY
   ======================================== */

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

.form-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
}

.form-description {
  background: #E8D5B7;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.form-description p {
  color: #2C5F4F;
  font-weight: 500;
  margin-bottom: 0;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: #2C5F4F;
  margin-bottom: 8px;
  font-size: 15px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8D5B7;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #FFFBF5;
}

.input-field:focus {
  outline: none;
  border-color: #8B4513;
  background: white;
}

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

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-field.checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 500;
}

.form-field.checkbox label a {
  color: #8B4513;
  text-decoration: underline;
}

.form-container .btn-primary {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 18px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-contact,
.faq-list {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.12);
}

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

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

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #E8D5B7 0%, #F5EDE0 100%);
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #2C5F4F;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.3);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 40px auto 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-content h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
  margin-bottom: 0;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.suggestion-card a {
  color: #8B4513;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
}

/* ========================================
   CTA SECTIONS - WARM & INVITING
   ======================================== */

.cta-section,
.cta-banner,
.expert-cta,
.cta-center {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7060 100%);
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.3);
}

.cta-section h2,
.cta-banner h2,
.expert-cta h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p,
.expert-cta p {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-center {
  background: transparent;
  padding: 40px 20px;
  margin: 40px 0;
  box-shadow: none;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */

.legal-content,
.gdpr-rights,
.cookie-explanation,
.legal-terms,
.supervisory-authority,
.contact-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.legal-content h2,
.legal-terms h2 {
  color: #2C5F4F;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3,
.legal-terms h3 {
  color: #8B4513;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-terms p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-terms ul {
  margin: 16px 0 16px 32px;
  list-style: disc;
}

.legal-content li,
.legal-terms li {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a,
.legal-terms a {
  color: #8B4513;
  text-decoration: underline;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.category {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.category h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ========================================
   SOCIAL FEED & CONTENT BLOCKS
   ======================================== */

.social-feed,
.sustainability,
.content-block {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.social-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hashtag {
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.social-handle {
  font-size: 20px;
  color: #2C5F4F;
  font-weight: 600;
  margin-bottom: 16px;
}

.user-content {
  font-size: 16px;
  color: #666;
  margin-top: 24px;
}

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

.content-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   FOOTER - WARM & WELCOMING
   ======================================== */

footer {
  background: linear-gradient(180deg, #2C5F4F 0%, #234A3D 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 0;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

.footer-nav a:hover {
  color: #E8D5B7;
}

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

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

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #E8D5B7;
}

/* ========================================
   COOKIE CONSENT BANNER - WARM DESIGN
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F4F 0%, #234A3D 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.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 p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background: #8B4513;
  color: white;
  border: none;
}

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

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

.cookie-reject:hover {
  border-color: white;
}

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

.cookie-settings:hover {
  background: #E8D5B7;
  color: #2C5F4F;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  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: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h2 {
  color: #2C5F4F;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #F5EDE0;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

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

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

.cookie-toggle.active {
  background: #8B4513;
}

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

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

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

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

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

.cookie-save,
.cookie-close {
  flex: 1 1 140px;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: #8B4513;
  color: white;
  border: none;
}

.cookie-save:hover {
  background: #A0522D;
}

.cookie-close {
  background: transparent;
  color: #2C5F4F;
  border: 2px solid #2C5F4F;
}

.cookie-close:hover {
  background: #2C5F4F;
  color: white;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
    border-radius: 0 0 30px 30px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Two-column layouts stack */
  .two-column-layout {
    flex-direction: column;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  /* Section spacing */
  .section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  /* Cards full width on mobile */
  .value-card,
  .service-card,
  .info-card,
  .category-card,
  .contact-card,
  .right-card,
  .location-card,
  .article-card,
  .technique-card,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 24px;
  }
  
  /* Footer stacks */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* CTA sections */
  .cta-section,
  .cta-banner,
  .expert-cta {
    padding: 40px 20px;
    margin: 40px 15px;
    border-radius: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Cookie banner stacks */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  /* Steps timeline */
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 30px;
  }
  
  h1 { font-size: 42px; }
  .hero h1 { font-size: 48px; }
  
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Smooth scroll for better UX */
html {
  scroll-padding-top: 80px;
}

/* Selection color matching brand */
::selection {
  background: #8B4513;
  color: white;
}

::-moz-selection {
  background: #8B4513;
  color: white;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #8B4513;
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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