/* ============================================
   CYRA MAX - VINTAGE RETRO DESIGN SYSTEM
   CSS Reset & Base Styles
   ============================================ */

* {
  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.7;
  color: #2C3E50;
  background-color: #F5E6D3;
  overflow-x: hidden;
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #8B4513;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

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

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

a:hover {
  color: #E67E22;
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

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

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

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

header {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 20px 0;
  border-bottom: 4px solid #C45A0A;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  max-height: 60px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

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

.main-nav a {
  color: #F5E6D3;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #FFD700;
  border-color: #FFD700;
  text-decoration: none;
  background-color: rgba(255, 215, 0, 0.1);
}

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

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #8B4513;
  color: #F5E6D3;
  border: 3px solid #C45A0A;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.4);
  border-left: 4px solid #C45A0A;
}

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

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

.mobile-menu-close:hover {
  background: #F5E6D3;
  color: #8B4513;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F5E6D3;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  padding: 12px 16px;
  border: 2px solid #C45A0A;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

/* ============================================
   BUTTONS - VINTAGE RETRO STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.btn-primary {
  background: #C45A0A;
  color: #FFFFFF;
  border-color: #8B4513;
}

.btn-primary:hover {
  background: #E67E22;
  border-color: #C45A0A;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 6px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.1) 10px,
    rgba(139, 69, 19, 0.1) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  margin-bottom: 24px;
}

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

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

/* ============================================
   HERO PAGE (Subpages)
   ============================================ */

.hero-page {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 6px solid #C45A0A;
}

.hero-page h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 48px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-page p {
  text-align: center;
  color: #F5E6D3;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #F5E6D3;
}

.breadcrumbs a {
  color: #FFD700;
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

/* ============================================
   SECTIONS - FLEXBOX LAYOUTS
   ============================================ */

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

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #8B4513;
  font-size: 36px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */

.value-proposition {
  background-color: #FFF8DC;
  padding: 60px 20px;
  margin-bottom: 60px;
  border: 4px solid #C45A0A;
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 280px;
  min-width: 280px;
  padding: 30px;
  background: #FFFFFF;
  border: 3px solid #D2691E;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(139, 69, 19, 0.3);
}

.value-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #C45A0A;
}

.value-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  padding: 60px 20px;
  background-color: #F5E6D3;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  min-width: 280px;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.4);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #C45A0A;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 15px;
  color: #4A4A4A;
}

.service-card .price {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 20px;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */

.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8DC 0%, #F5E6D3 100%);
  border-top: 4px solid #D2691E;
  border-bottom: 4px solid #D2691E;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  min-width: 220px;
  padding: 30px 20px;
  background: #FFFFFF;
  border: 3px dashed #C45A0A;
  border-radius: 8px;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #8B4513;
  color: #FFFFFF;
  font-family: 'Courier New', monospace;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #C45A0A;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8B4513;
}

.step p {
  font-size: 14px;
  color: #666;
}

/* ============================================
   PROJECTS
   ============================================ */

.featured-projects,
.projects-catalog {
  padding: 60px 20px;
  background-color: #FFF8DC;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 320px;
  padding: 24px;
  background: #FFFFFF;
  border: 4px solid #D2691E;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(139, 69, 19, 0.3);
}

.project-card .badge {
  display: inline-block;
  padding: 6px 12px;
  background: #8B4513;
  color: #FFFFFF;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #C45A0A;
}

.project-card .category {
  font-size: 14px;
  color: #8B4513;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-card p {
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 15px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #666;
  font-family: 'Courier New', monospace;
}

.project-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   FEATURED PROJECT
   ============================================ */

.featured-project {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  border: 6px solid #8B4513;
  margin-bottom: 60px;
}

.featured-project h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.featured-project p {
  color: #F5E6D3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 17px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #FFD700;
  color: #8B4513;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 2px solid #8B4513;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px auto;
  max-width: 600px;
  text-align: center;
}

.project-details p {
  color: #F5E6D3;
  font-size: 16px;
}

/* ============================================
   GUIDES / PORADNIKI
   ============================================ */

.guides-catalog {
  padding: 60px 20px;
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 320px;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid #C45A0A;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.guide-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(139, 69, 19, 0.3);
}

.category-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #D2691E;
  color: #FFFFFF;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.guide-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #8B4513;
}

.guide-card p {
  font-size: 15px;
  margin-bottom: 12px;
}

.reading-time {
  font-size: 13px;
  color: #999;
  font-family: 'Courier New', monospace;
}

.featured-guide {
  padding: 60px 20px;
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  border: 6px solid #8B4513;
  margin-bottom: 60px;
  text-align: center;
}

.featured-guide h2 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.featured-guide p {
  color: #F5E6D3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 60px 20px;
  background: #FFF8DC;
  border-top: 4px solid #D2691E;
  border-bottom: 4px solid #D2691E;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 400px;
  min-width: 400px;
  max-width: 500px;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #D2691E;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-card .author {
  font-style: normal;
  font-size: 14px;
  color: #8B4513;
  margin-bottom: 0;
  text-align: right;
}

.testimonial-card .author strong {
  color: #C45A0A;
  font-weight: 700;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  text-align: center;
  border: 6px solid #C45A0A;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

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

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

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

/* ============================================
   SERVICES DETAILED
   ============================================ */

.services-detailed {
  padding: 60px 20px;
}

.service-detailed-card {
  padding: 40px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.3);
}

.service-detailed-card h2 {
  font-size: 28px;
  color: #C45A0A;
  text-align: left;
  margin-bottom: 20px;
}

.service-detailed-card p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF8DC;
  border: 2px dashed #D2691E;
  border-radius: 6px;
}

.service-details p {
  margin-bottom: 8px;
  font-size: 15px;
  color: #4A4A4A;
}

.service-details strong {
  color: #8B4513;
  font-family: 'Courier New', monospace;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
  padding: 60px 20px;
  background: #F5E6D3;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
  min-width: 280px;
  padding: 20px;
  background: #FFFFFF;
  border: 3px solid #D2691E;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(139, 69, 19, 0.2);
}

.benefit-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  font-size: 15px;
  color: #4A4A4A;
}

/* ============================================
   ABOUT / O NAS
   ============================================ */

.about-story,
.mission-vision,
.values,
.statistics {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.about-story {
  background: #FFFFFF;
  border: 4px solid #D2691E;
  border-radius: 8px;
}

.about-story h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-story p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
}

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

.mission-item {
  flex: 1 1 400px;
  min-width: 400px;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

.mission-item h3 {
  color: #C45A0A;
  margin-bottom: 16px;
}

.mission-item p {
  font-size: 16px;
  line-height: 1.7;
}

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

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
  padding: 30px 20px;
  background: #FFFFFF;
  border: 4px solid #C45A0A;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

.stat-number {
  font-family: 'Courier New', monospace;
  font-size: 48px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 12px;
}

.stat-item p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-methods,
.contact-info,
.opening-hours,
.location-map {
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

.contact-method,
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px;
  min-width: 300px;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #D2691E;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

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

.contact-method h3 {
  color: #C45A0A;
  margin-bottom: 12px;
}

.contact-method p,
.contact-item p {
  font-size: 15px;
  margin-bottom: 8px;
}

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

.form-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid #C45A0A;
  border-radius: 8px;
  text-align: center;
}

.form-note p {
  margin-bottom: 8px;
}

.hours-table {
  max-width: 600px;
  margin: 40px auto 20px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid #F5E6D3;
  font-family: 'Courier New', monospace;
  font-size: 15px;
}

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

.hours-row span:first-child {
  font-weight: 600;
  color: #8B4513;
}

.hours-row span:last-child {
  color: #C45A0A;
}

.opening-hours .note {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 16px;
}

.location-info {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #D2691E;
  border-radius: 8px;
}

.location-info p {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}

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

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.2);
}

.content-wrapper h2 {
  font-size: 24px;
  color: #8B4513;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 3px solid #D2691E;
  padding-bottom: 8px;
}

.content-wrapper h2:first-of-type {
  margin-top: 0;
}

.content-wrapper p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper ul li {
  list-style: square;
  margin-bottom: 8px;
  font-size: 15px;
  color: #4A4A4A;
}

.content-wrapper strong {
  color: #8B4513;
  font-weight: 700;
}

.last-updated,
.effective-date {
  text-align: center;
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 12px;
}

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

.success-icon {
  text-align: center;
  margin-bottom: 24px;
}

.success-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.confirmation-details,
.next-actions,
.contact-reminder {
  padding: 60px 20px;
}

.info-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #FFF8DC;
  border: 4px solid #D2691E;
  border-radius: 8px;
}

.info-box h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
}

.info-box ol {
  padding-left: 24px;
  margin-top: 16px;
}

.info-box ol li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #4A4A4A;
}

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

.action-card {
  flex: 1 1 280px;
  min-width: 280px;
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
  text-align: center;
}

.action-card h3 {
  color: #C45A0A;
  margin-bottom: 12px;
}

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

.contact-info-compact {
  max-width: 600px;
  margin: 24px auto;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid #D2691E;
  border-radius: 8px;
  text-align: center;
}

.contact-info-compact p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  color: #F5E6D3;
  padding: 60px 20px 20px;
  border-top: 6px solid #C45A0A;
}

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

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

.footer-column h3 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #F5E6D3;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

.footer-column ul li a {
  color: #F5E6D3;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FFD700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 2px solid #A0522D;
}

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

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

.footer-links a {
  color: #F5E6D3;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: #F5E6D3;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
  z-index: 1998;
  border-top: 4px solid #C45A0A;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  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 p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  color: #F5E6D3;
}

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

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  border: 4px solid #8B4513;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #8B4513;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.cookie-category {
  padding: 16px;
  margin-bottom: 16px;
  background: #FFF8DC;
  border: 2px solid #D2691E;
  border-radius: 6px;
}

.cookie-category h3 {
  color: #C45A0A;
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

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

.cookie-toggle label {
  font-size: 14px;
  color: #4A4A4A;
  cursor: pointer;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 36px; }
  .hero-page h1 { font-size: 32px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Header */
  .header-content {
    justify-content: center;
  }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  /* Grids */
  .value-grid,
  .services-grid,
  .projects-grid,
  .guides-grid,
  .steps-grid,
  .benefits-grid,
  .mission-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .project-card,
  .guide-card,
  .step,
  .benefit-item,
  .mission-item,
  .stat-item,
  .contact-method,
  .contact-item,
  .action-card,
  .testimonial-card {
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content { flex-direction: column; }
  .footer-column { min-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  
  /* Cookie Banner */
  .cookie-banner-content { flex-direction: column; text-align: center; }
  .cookie-banner-buttons { justify-content: center; width: 100%; }
  .cookie-banner .btn { flex: 1; }
  
  /* Sections */
  .section { padding: 30px 16px; }
  
  /* CTA */
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-item,
  .service-card,
  .project-card,
  .guide-card {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

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

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner { display: none; }
  body { background: white; color: black; }
  a { text-decoration: underline; }
}