/* ===================================
   IMBULPIATE COLLECTORS' CLUB
   Professional Corporate Design System
   =================================== */

/* CSS RESET & BASE */
* {
  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: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #4A5568;
}

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

a:hover {
  color: #8B4513;
}

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

li {
  margin-bottom: 8px;
  color: #4A5568;
}

strong {
  font-weight: 700;
  color: #2C3E50;
}

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

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

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  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 {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #8B4513;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.3s ease, color 0.3s ease;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #E2E8F0;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.price-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #A0522D;
  border-color: #A0522D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

/* INTRO SECTION */
.intro {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.tagline {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 24px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 32px;
  color: #4A5568;
}

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

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 20px;
  background-color: #F8F9FA;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
}

/* SERVICES PREVIEW & GRID */
.services-preview {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

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

.service-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.service-card p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin-top: 16px;
}

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

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.benefit-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-item h3 {
  color: #2C3E50;
  font-size: 20px;
}

.benefit-item p {
  color: #4A5568;
  font-size: 16px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  margin-bottom: 20px;
  border-left: 4px solid #8B4513;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

/* LOCATION HIGHLIGHT */
.location-highlight {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.location-highlight h2 {
  margin-bottom: 32px;
}

.location-content {
  max-width: 600px;
  margin: 0 auto;
}

.location-content .address {
  font-size: 20px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 12px;
}

.location-content .hours {
  font-size: 18px;
  color: #8B4513;
  margin-bottom: 20px;
}

/* CTA FINAL */
.cta-final, .cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  text-align: center;
}

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

.cta-final p, .cta p {
  color: #E2E8F0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

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

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

.footer-col img {
  height: 50px;
  margin-bottom: 16px;
}

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

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

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

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

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

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

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

/* STORY & VALUES */
.story, .values, .expertise, .location {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.story:nth-child(even), .values:nth-child(even) {
  background-color: #F8F9FA;
}

.mission {
  font-size: 20px;
  font-weight: 600;
  color: #8B4513;
  padding: 24px;
  background-color: #FFF8F0;
  border-left: 4px solid #8B4513;
  margin: 32px 0;
}

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

.value-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

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

.expertise-list span {
  padding: 12px 24px;
  background-color: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 16px;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.expertise-list span:hover {
  background-color: #8B4513;
  color: #FFFFFF;
  border-color: #8B4513;
}

/* MEMBERSHIP PAGES */
.membership-overview {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.membership-overview .intro {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0;
}

.benefits-detailed {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.benefits-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.category {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.category h3 {
  color: #8B4513;
  margin-bottom: 20px;
  font-size: 22px;
}

.category ul {
  list-style-type: none;
  padding-left: 0;
}

.category li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #4A5568;
}

.category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: 700;
}

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

.price-main {
  font-size: 48px;
  font-weight: 700;
  color: #8B4513;
  margin: 24px 0;
}

.trial {
  font-size: 18px;
  color: #2C3E50;
  font-weight: 600;
  margin-top: 20px;
}

.process {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.process ol {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.process li {
  counter-increment: item;
  padding: 20px 20px 20px 60px;
  margin-bottom: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #4A5568;
}

.process li::before {
  content: counter(item);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8B4513;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}

/* SERVICES PAGE */
.services {
  padding: 60px 20px;
}

.service-item {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #8B4513;
}

.service-item h2 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.service-item .tagline {
  font-size: 18px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
}

.service-item .details {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
}

.why-us {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.why-us ul {
  max-width: 700px;
  margin: 0 auto;
}

.why-us li {
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: 16px;
}

/* EVENTS PAGE */
.events-intro {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.event-types span {
  padding: 10px 20px;
  background-color: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 14px;
  color: #2C3E50;
}

.upcoming-events {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.event-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card h3 {
  color: #2C3E50;
  font-size: 20px;
}

.event-card .date {
  font-size: 16px;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 8px;
}

.event-card .time {
  font-size: 14px;
  color: #718096;
}

.event-card .price,
.event-card .access {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  margin-top: 12px;
}

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

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.categories-grid .category {
  flex: 1 1 calc(50% - 20px);
}

.member-benefits {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.member-benefits ul {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

/* GALLERY PAGE */
.gallery-intro {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.gallery-intro .categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.gallery-intro .categories span {
  padding: 10px 20px;
  background-color: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 14px;
  color: #2C3E50;
}

.gallery-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.gallery-section:nth-child(even) {
  background-color: #FFFFFF;
}

.gallery-description {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
}

.disclaimer {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}

.testimonial-visual {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

/* CONTACT PAGE */
.contact-intro {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-methods {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.method h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.method p {
  color: #4A5568;
  font-size: 16px;
}

.method a {
  color: #8B4513;
  font-weight: 600;
}

.method .hours {
  font-size: 14px;
  color: #718096;
}

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

.location-info .address {
  font-size: 20px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 20px;
}

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

.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #F8F9FA;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid #8B4513;
}

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

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

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

.legal-content h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.legal-content h4 {
  color: #8B4513;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.confirmation {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-summary {
  padding: 40px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

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

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.suggestion {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.suggestion h3 {
  color: #2C3E50;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
  color: #E2E8F0;
}

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

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

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

.cookie-btn-accept:hover {
  background-color: #A0522D;
}

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

.cookie-btn-reject:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

.cookie-btn-settings:hover {
  background-color: #D4AF37;
  color: #2C3E50;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C3E50;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E0;
  transition: 0.4s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
  background-color: #8B4513;
}

.cookie-toggle input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .toggle-slider {
  background-color: #E2E8F0;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Adjust flex layouts for mobile */
  .header-content,
  .cta-buttons,
  .trust-indicators,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .values-grid,
  .benefits-categories,
  .categories-grid,
  .events-grid,
  .methods-grid,
  .footer-content,
  .footer-nav,
  .suggestions-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* Full width cards */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .value-item,
  .category,
  .event-card,
  .method,
  .footer-col,
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Mobile spacing */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 50px 20px;
  }

  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 30px 20px;
  }

  /* Mobile menu width */
  .mobile-menu {
    width: 85%;
    max-width: 320px;
  }

  /* Hours table mobile */
  .hours-row {
    font-size: 14px;
  }

  /* Expertise list mobile */
  .expertise-list {
    gap: 12px;
  }

  .expertise-list span {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .price-main {
    font-size: 36px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

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

  header {
    position: relative;
  }

  .btn {
    border: 1px solid #2C3E50;
  }
}