/* ========================================
   AURELIUM BOOST - ELEGANT CLASSIC ARCHITECTURE
   Design Style: Timeless Elegance
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #F8F6F3;
  overflow-x: hidden;
}

/* TYPOGRAPHY - ELEGANT CLASSIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

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

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

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

a:hover {
  color: #6B5537;
}

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

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

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #D4C4B0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

.cta-button {
  background-color: #8B6F47;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #8B6F47;
}

.cta-button:hover {
  background-color: #6B5537;
  border-color: #6B5537;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #8B6F47;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #6B5537;
}

.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: 1000;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8B6F47;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E8E1D6;
  transition: all 0.3s ease;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #EAE4D9 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #D4C4B0;
}

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

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.btn-primary {
  background-color: #8B6F47;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #8B6F47;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #6B5537;
  border-color: #6B5537;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #8B6F47;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  border: 2px solid #8B6F47;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #8B6F47;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid #D4C4B0;
}

.trust-indicators span {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #5A5A5A;
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  max-width: 800px;
  margin: 0 auto 50px;
}

section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 42px;
  color: #1A1A1A;
}

/* SERVICES GRID */
.services-overview {
  background-color: #FFFFFF;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: #F8F6F3;
  border: 1px solid #D4C4B0;
  padding: 40px 30px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #8B6F47;
}

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-card p {
  color: #5A5A5A;
  margin-bottom: 20px;
}

.price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  color: #8B6F47;
  font-weight: 600;
  margin: 20px 0;
}

.service-link {
  color: #8B6F47;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #6B5537;
  padding-left: 5px;
}

/* BENEFITS */
.benefits {
  background-color: #F8F6F3;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(50% - 40px);
  min-width: 250px;
  max-width: 500px;
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border: 1px solid #E8E1D6;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #D4C4B0;
}

.benefit-item h3 {
  color: #8B6F47;
  margin-bottom: 16px;
  font-size: 22px;
}

/* STATS */
.stats {
  background-color: #8B6F47;
  color: #FFFFFF;
  text-align: center;
}

.stats h2 {
  color: #FFFFFF;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #E8E1D6;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #F8F6F3;
  border-left: 4px solid #8B6F47;
  padding: 40px 30px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 5px;
}

.client-position {
  font-size: 14px;
  color: #7A7A7A;
}

/* CTA SECTIONS */
.cta-final,
.cta-about,
.cta-services,
.cta-portfolio,
.cta-realizacje {
  background: linear-gradient(135deg, #8B6F47 0%, #6B5537 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-portfolio h2,
.cta-realizacje h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-final p,
.cta-about p,
.cta-services p,
.cta-portfolio p,
.cta-realizacje p {
  color: #E8E1D6;
  font-size: 18px;
  margin-bottom: 40px;
}

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

.contact-quick {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-quick p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 16px;
}

.contact-quick img {
  width: 20px;
  height: 20px;
}

/* SUBPAGE HERO */
.hero-subpage {
  background: linear-gradient(135deg, #F8F6F3 0%, #EAE4D9 100%);
  padding: 50px 20px;
  border-bottom: 3px solid #D4C4B0;
}

.breadcrumbs {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #8B6F47;
}

.breadcrumbs span {
  color: #5A5A5A;
}

.hero-subpage h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.intro {
  font-size: 20px;
  color: #5A5A5A;
  max-width: 800px;
}

/* COMPANY STORY */
.company-story {
  background-color: #FFFFFF;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* MISSION VISION */
.mission-vision {
  background-color: #F8F6F3;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 40px 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
}

.mission-card h3,
.vision-card h3 {
  color: #8B6F47;
  margin-bottom: 20px;
}

/* VALUES */
.values {
  background-color: #FFFFFF;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  max-width: 400px;
  background-color: #F8F6F3;
  padding: 30px;
  border-left: 4px solid #8B6F47;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
  color: #8B6F47;
  margin-bottom: 12px;
}

/* TEAM */
.team {
  background-color: #F8F6F3;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 40px 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.position {
  font-size: 16px;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 16px;
}

/* SERVICES DETAILED */
.services-detailed {
  background-color: #FFFFFF;
}

.service-item {
  background-color: #F8F6F3;
  padding: 40px 30px;
  margin-bottom: 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.service-item h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 32px;
}

.service-item p {
  font-size: 17px;
  line-height: 1.8;
}

/* EXPERTISE AREAS */
.expertise-areas {
  background-color: #F8F6F3;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.expertise-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 240px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.expertise-item h3 {
  color: #8B6F47;
  margin-bottom: 12px;
}

/* PORTFOLIO */
.portfolio-stats {
  background-color: #aba9a5;
}

.portfolio-grid {
  background-color: #FFFFFF;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  background-color: #F8F6F3;
  border: 1px solid #D4C4B0;
  padding: 40px 30px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #8B6F47;
}

.project-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.category {
  font-size: 14px;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 8px;
}

.location {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 16px;
}

/* AWARDS */
.awards-recognition {
  background-color: #F8F6F3;
}

.awards-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.award-item {
  background-color: #FFFFFF;
  padding: 40px 30px;
  border-left: 4px solid #8B6F47;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.award-item h3 {
  color: #8B6F47;
  margin-bottom: 8px;
}

.award-project {
  font-size: 16px;
  color: #5A5A5A;
  font-weight: 600;
  margin-bottom: 12px;
}

/* REALIZACJE */
.realizacje-featured {
  background-color: #FFFFFF;
}

.featured-project {
  background-color: #F8F6F3;
  padding: 50px 40px;
  margin-bottom: 40px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
}

.featured-project h3 {
  font-size: 32px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.completion-date {
  font-size: 14px;
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 20px;
}

.project-specs {
  background-color: #FFFFFF;
  padding: 20px;
  margin: 30px 0;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.project-specs p {
  flex: 1 1 200px;
  margin: 0;
}

.client-quote {
  font-style: italic;
  color: #5A5A5A;
  border-left: 4px solid #8B6F47;
  padding-left: 20px;
  margin-top: 30px;
  font-size: 16px;
}

/* MAP */
.realizacje-map {
  background-color: #F8F6F3;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.city-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 250px;
  background-color: #FFFFFF;
  padding: 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.city-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.city-item h3 {
  color: #8B6F47;
  margin-bottom: 8px;
}

/* CLIENT SUCCESS */
.client-success {
  background-color: #FFFFFF;
}

.success-story {
  max-width: 900px;
  margin: 0 auto;
  background-color: #F8F6F3;
  padding: 50px 40px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
}

.success-story h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.project-name {
  color: #8B6F47;
  font-weight: 600;
  margin-bottom: 20px;
}

/* CONTACT */
.contact-info {
  background-color: #FFFFFF;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 240px;
  max-width: 400px;
  background-color: #F8F6F3;
  padding: 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
}

.contact-item h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

.contact-item a {
  color: #2C3E50;
  font-weight: 600;
}

.contact-item a:hover {
  color: #8B6F47;
}

/* MAP LOCATION */
.map-location {
  background-color: #F8F6F3;
}

.map-placeholder {
  background-color: #E8E1D6;
  padding: 100px 40px;
  text-align: center;
  border: 2px dashed #D4C4B0;
  border-radius: 4px;
  margin-top: 30px;
}

.map-placeholder p {
  color: #7A7A7A;
  font-size: 18px;
}

/* CONSULTATION BOOKING */
.consultation-booking {
  background-color: #FFFFFF;
}

.consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.consultation-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 450px;
  background-color: #F8F6F3;
  padding: 40px 30px;
  border: 2px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.consultation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #8B6F47;
}

.consultation-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 8px;
}

.consultation-card .price {
  color: #8B6F47;
  font-size: 28px;
  margin: 16px 0;
}

/* CONTACT METHODS */
.contact-methods {
  background-color: #F8F6F3;
}

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

.method-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 40px 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.method-item h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

.method-value {
  font-weight: 600;
  color: #2C3E50;
  font-size: 18px;
  margin-top: 12px;
}

.method-value a {
  color: #2C3E50;
}

.method-value a:hover {
  color: #8B6F47;
}

/* FAQ */
.faq-contact {
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #F8F6F3;
  padding: 30px;
  border-left: 4px solid #8B6F47;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
  color: #5A5A5A;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
}

.legal-content h2 {
  text-align: left;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  text-align: left;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 16px;
  color: #8B6F47;
}

.legal-content ul {
  margin: 20px 0 20px 40px;
  list-style-type: disc;
}

.legal-content li {
  margin-bottom: 12px;
  color: #5A5A5A;
  line-height: 1.8;
}

.last-update {
  font-size: 14px;
  color: #7A7A7A;
  font-style: italic;
}

/* USER RIGHTS */
.user-rights {
  background-color: #F8F6F3;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.right-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 240px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.right-item h3 {
  color: #8B6F47;
  margin-bottom: 12px;
}

.rights-exercise {
  text-align: center;
  font-size: 16px;
  color: #5A5A5A;
  max-width: 700px;
  margin: 40px auto 0;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #EAE4D9 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #8B6F47;
  color: #FFFFFF;
  font-size: 48px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 30px;
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.confirmation {
  font-size: 20px;
  color: #5A5A5A;
  max-width: 700px;
  margin: 0 auto 40px;
}

.next-steps,
.next-steps-simple {
  background-color: #FFFFFF;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #8B6F47;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
}

.step-item h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.alternative-actions {
  background-color: #F8F6F3;
}

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

.action-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 240px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 40px 30px;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #8B6F47;
}

.action-card h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

.contact-alternative,
.contact-info-simple {
  background-color: #FFFFFF;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #E8E1D6;
  padding: 60px 20px 20px;
  margin-top: 0;
}

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

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

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
}

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

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

.footer-nav a {
  color: #C4B8A6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

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

.footer-bottom p {
  color: #A09580;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #aaaaaa;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #8B6F47;
}

.cookie-settings:hover {
  background-color: #8B6F47;
}

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

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

.modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
}

.modal-content h2 {
  color: #1A1A1A;
  margin-bottom: 20px;
  text-align: left;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #F8F6F3;
  border: 1px solid #D4C4B0;
  border-radius: 4px;
}

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

.category-header h3 {
  color: #1A1A1A;
  font-size: 18px;
  margin: 0;
}

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

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

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

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

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

.category-description {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subpage h1 {
    font-size: 32px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .project-card,
  .team-member,
  .expertise-item,
  .consultation-card,
  .method-item,
  .right-item,
  .action-card,
  .city-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .project-specs {
    flex-direction: column;
  }
  
  .contact-quick {
    flex-direction: column;
    gap: 20px;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subpage h1 {
    font-size: 26px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  section {
    padding: 30px 15px;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .project-card,
  .featured-project,
  .success-story {
    padding: 30px 20px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  section {
    page-break-inside: avoid;
  }
}