/* ============================================
   GLOSSY SURFACE - SOFT PASTEL DESIGN SYSTEM
   Elegant Architecture & Design Studio
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  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', sans-serif;
  line-height: 1.7;
  color: #5a5a5a;
  background-color: #fef9f7;
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-pink: #ffd6e8;
  --pastel-blue: #c8e3f5;
  --pastel-lavender: #e6d9f5;
  --pastel-mint: #d9f5e6;
  --pastel-peach: #ffe6d9;
  --pastel-cream: #fef9f7;
  --soft-gray: #9b9b9b;
  --dark-text: #5a5a5a;
  --light-text: #8a8a8a;
  --white: #ffffff;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-text);
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: var(--dark-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

/* HEADER STYLES */
header {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-pink) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 15px rgba(255, 214, 232, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(200, 227, 245, 0.3));
  transition: transform 0.3s ease;
}

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

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-blue));
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--dark-text);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 217, 245, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 217, 245, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-cream) 0%, var(--pastel-pink) 50%, var(--pastel-lavender) 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 25px rgba(200, 227, 245, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(230, 217, 245, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-pink);
  color: var(--white);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--white);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(230, 217, 245, 0.3);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-blue) 50%, var(--pastel-lavender) 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(255, 214, 232, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 227, 245, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: var(--dark-text);
  text-shadow: 0 2px 10px rgba(230, 217, 245, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--light-text);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(230, 217, 245, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(230, 217, 245, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark-text);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark-text);
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-mint) 100%);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(217, 245, 230, 0.2);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(217, 245, 230, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 245, 230, 0.3);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--light-text);
  text-align: center;
}

/* SERVICES GRID */
.services-overview {
  background: var(--pastel-cream);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-blue) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 227, 245, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender), var(--pastel-blue));
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(200, 227, 245, 0.35);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--dark-text);
}

.service-card p {
  font-size: 15px;
  color: var(--light-text);
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 16px;
}

/* SERVICE DETAIL CARDS */
.services-detail {
  background: var(--pastel-cream);
}

.service-detail-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-peach) 100%);
  padding: 40px 32px;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(255, 230, 217, 0.2);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 230, 217, 0.3);
}

.service-tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 16px;
}

.features-list {
  margin-top: 24px;
  list-style: none;
  margin-left: 0;
}

.features-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(230, 217, 245, 0.3);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-weight: 700;
  font-size: 20px;
}

.features-list li:last-child {
  border-bottom: none;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(230, 217, 245, 0.2);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 217, 245, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 217, 245, 0.35);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 14px;
}

/* PROJECTS GRID */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.project-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  max-width: 580px;
  padding: 32px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-mint) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(217, 245, 230, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(217, 245, 230, 0.35);
}

.project-card h3 {
  color: var(--dark-text);
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.project-category,
.project-year {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}

.project-details {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.8;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(230, 217, 245, 0.3);
}

/* VALUES & PRINCIPLES */
.values-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.value-card,
.principle-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-blue) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 227, 245, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 227, 245, 0.3);
}

/* STORY & PHILOSOPHY CONTENT */
.story,
.philosophy-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.story p,
.philosophy-intro p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--dark-text);
}

blockquote {
  padding: 32px;
  margin: 40px 0;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  border-radius: 20px;
  border-left: 5px solid var(--pastel-blue);
  font-size: 20px;
  font-style: italic;
  color: var(--dark-text);
  box-shadow: 0 6px 20px rgba(230, 217, 245, 0.2);
}

/* SUSTAINABILITY & MANIFESTO */
.sustainability-list,
.manifesto-list {
  list-style: none;
  margin: 32px 0;
  margin-left: 0;
}

.sustainability-list li,
.manifesto-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(230, 217, 245, 0.3);
}

.sustainability-list li::before,
.manifesto-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-mint);
  font-weight: 700;
  font-size: 24px;
}

.certification {
  margin-top: 32px;
  padding: 20px;
  background: rgba(217, 245, 230, 0.3);
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
}

/* CONTACT SECTIONS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-lavender) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 217, 245, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 217, 245, 0.3);
}

.contact-card h3 {
  color: var(--dark-text);
  margin-bottom: 16px;
}

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  justify-content: center;
}

.booking-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 300px;
  padding: 24px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-mint) 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(200, 227, 245, 0.2);
  transition: all 0.3s ease;
}

.booking-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(200, 227, 245, 0.3);
}

.booking-option h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.note {
  font-size: 14px;
  font-style: italic;
  color: var(--light-text);
  text-align: center;
  margin: 24px 0;
}

.response-time {
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
  padding: 16px;
  background: rgba(230, 217, 245, 0.2);
  border-radius: 12px;
  margin: 24px 0;
}

/* MAP SECTION */
.map-placeholder {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-mint) 100%);
  border-radius: 20px;
  text-align: center;
  margin: 32px 0;
  box-shadow: 0 6px 20px rgba(200, 227, 245, 0.2);
}

.map-placeholder p {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
}

.directions {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.directions p {
  margin-bottom: 12px;
  color: var(--dark-text);
}

/* THANK YOU PAGE */
.steps-list {
  list-style: none;
  margin: 32px 0;
  margin-left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 17px;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(230, 217, 245, 0.3);
}

.steps-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-weight: 700;
  font-size: 24px;
}

.confirmation {
  margin-top: 32px;
  padding: 20px;
  background: rgba(217, 245, 230, 0.3);
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
}

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

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-peach) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 230, 217, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 230, 217, 0.3);
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--dark-text);
}

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

.legal-content li {
  margin-bottom: 12px;
  color: var(--dark-text);
}

.last-updated {
  font-size: 14px;
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 32px;
}

.contact-box {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 217, 245, 0.2);
}

.contact-box h3 {
  color: var(--dark-text);
  margin-bottom: 16px;
}

.contact-box p {
  color: var(--dark-text);
}

.rights-list,
.cookie-types {
  list-style: none;
  margin: 24px 0;
  margin-left: 0;
}

.rights-list li,
.cookie-types li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(230, 217, 245, 0.3);
}

.rights-list li::before,
.cookie-types li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pastel-lavender);
  font-weight: 700;
  font-size: 24px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(230, 217, 245, 0.3);
  margin-bottom: 60px;
}

.cta-section h2 {
  color: var(--dark-text);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px 24px;
  color: var(--dark-text);
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  color: var(--dark-text);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  font-size: 14px;
  color: var(--light-text);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--dark-text);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(230, 217, 245, 0.3);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-pink) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(230, 217, 245, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 15px;
  color: var(--dark-text);
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-blue));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(230, 217, 245, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 217, 245, 0.4);
}

.cookie-btn-reject {
  background: var(--white);
  color: var(--dark-text);
  border: 1px solid var(--pastel-lavender);
}

.cookie-btn-reject:hover {
  background: var(--pastel-cream);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--dark-text);
  text-decoration: underline;
  border: none;
  padding: 10px 16px;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-blue) 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(230, 217, 245, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-pink);
  color: var(--white);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: var(--dark-text);
}

.cookie-category p {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background: var(--soft-gray);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-blue));
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .stats-grid,
  .services-grid,
  .testimonials-grid,
  .projects-grid,
  .values-grid,
  .principles-grid,
  .contact-grid,
  .booking-options,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .stat-item,
  .service-card,
  .testimonial-card,
  .project-card,
  .value-card,
  .principle-card,
  .contact-card,
  .booking-option,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 20px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .service-detail-card,
  .contact-box,
  blockquote {
    padding: 24px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}