/* ============================================
   MYTHIC WIZARD - CREATIVE ARTISTIC STYLES
   Design: Creative & Artistic Literary Magic
   ============================================ */

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

:root {
  --primary: #2C1810;
  --secondary: #8B4513;
  --accent: #DAA520;
  --light-bg: #FFF8F0;
  --white: #FFFFFF;
  --text-dark: #1A0F08;
  --text-medium: #5A3825;
  --border-color: #D4A574;
  --shadow: rgba(44, 24, 16, 0.15);
  --overlay: rgba(44, 24, 16, 0.9);
}

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

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--accent);
}

strong {
  font-weight: 700;
  color: var(--primary);
}

em {
  font-style: italic;
  color: var(--text-medium);
}

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

li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--accent);
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
  transform: rotate(90deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px var(--shadow);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  border: 2px solid var(--white);
  color: var(--primary);
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 18px;
  padding: 16px 20px;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid var(--accent);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(10px);
}

/* HEADER */
header {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 24px 0;
  box-shadow: 0 4px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.1">📚</text></svg>');
  opacity: 0.1;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero p {
  color: var(--light-bg);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn:not(.btn-primary):not(.btn-secondary) {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn:not(.btn-primary):not(.btn-secondary):hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
}

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

.introduction,
.story,
.mission-vision,
.location,
.contact-info,
.features,
.categories {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow);
  border: 3px solid var(--border-color);
}

.subtitle {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}

/* KEY VALUES */
.key-values {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.key-values span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.key-values span:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 8px 25px var(--shadow);
}

/* SERVICES GRID */
.services-grid,
.services-list,
.benefits-grid,
.features-grid,
.categories-grid,
.clubs-list,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.service-card-full,
.benefit,
.feature,
.category,
.category-card,
.club-card,
.post-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card::before,
.service-card-full::before,
.club-card::before,
.post-card::before {
  content: '✨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.service-card:hover,
.service-card-full:hover,
.benefit:hover,
.feature:hover,
.club-card:hover,
.post-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
  border-color: var(--accent);
}

.service-card:hover::before,
.service-card-full:hover::before,
.club-card:hover::before,
.post-card:hover::before {
  transform: rotate(360deg) scale(1.5);
  opacity: 1;
}

.services-grid .service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.services-list .service-card-full {
  flex: 1 1 100%;
}

.benefits-grid .benefit,
.features-grid .feature {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.categories-grid .category,
.categories-grid .category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
}

.clubs-list .club-card {
  flex: 1 1 100%;
}

.posts-grid .post-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
}

.service-card h3,
.service-card-full h3,
.benefit h3,
.feature h3,
.club-card h3,
.post-card h3 {
  color: var(--secondary);
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p,
.service-card-full p {
  color: var(--text-medium);
  flex-grow: 1;
}

.price,
.price-big {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  margin: 16px 0;
}

.price-big {
  font-size: 48px;
  text-align: center;
}

.service-card-full ul,
.pricing ul {
  list-style: none;
  margin: 20px 0;
}

.service-card-full ul li,
.pricing ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-medium);
}

.service-card-full ul li::before,
.pricing ul li::before {
  content: '📖';
  position: absolute;
  left: 0;
  top: 8px;
}

/* MISSION & VISION */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 40px;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 8px 25px var(--shadow);
}

.mission h3,
.vision h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.mission p,
.vision p {
  color: var(--light-bg);
}

.values {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  margin-top: 24px;
}

.values h3 {
  text-align: center;
  margin-bottom: 24px;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  justify-content: center;
}

.values li {
  background: var(--white);
  padding: 16px 24px;
  border-radius: 25px;
  border: 2px solid var(--accent);
  font-family: 'Cinzel', serif;
  color: var(--primary);
  transition: all 0.3s ease;
}

.values li:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.role {
  font-family: 'Cinzel', serif;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 6px 20px var(--shadow);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: var(--secondary);
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin: 0;
}

/* PRICING */
.pricing {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow);
  border: 3px solid var(--border-color);
  text-align: center;
  margin-bottom: 60px;
}

.pricing h2 {
  margin-bottom: 24px;
}

.guarantee,
.trial-info {
  margin-top: 24px;
  font-style: italic;
  color: var(--text-medium);
  font-size: 14px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: 20px;
  color: var(--white);
  min-width: 200px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px) rotate(2deg);
}

.stat strong {
  display: block;
  font-size: 36px;
  color: var(--white);
  font-family: 'Cinzel', serif;
  margin-bottom: 8px;
}

/* POST META */
.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 16px;
}

.post-meta span {
  padding: 6px 12px;
  background: var(--light-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.contact-item h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

/* FORM NOTE */
.form-note {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--accent);
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

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

/* DIRECTIONS */
.directions {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  margin-top: 32px;
}

.directions h3 {
  margin-bottom: 16px;
}

.directions ul {
  list-style: none;
  margin: 0;
}

.directions li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

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

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--light-bg);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow);
  border: 3px solid var(--border-color);
  margin-bottom: 60px;
}

.legal-content h1 {
  border-bottom: 4px solid var(--accent);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--secondary);
  margin-top: 40px;
  margin-bottom: 16px;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--accent);
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px var(--shadow);
  animation: pulse 2s infinite;
}

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

.thank-you-hero h1 {
  color: var(--white);
}

.thank-you-hero p {
  color: var(--light-bg);
}

.confirmation-box {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--accent);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
  box-shadow: 0 6px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
  border-color: var(--accent);
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-nav,
.footer-contact {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
  color: var(--light-bg);
}

footer h4 {
  color: var(--accent);
  font-family: 'Cinzel', serif;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--light-bg);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-legal {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
  margin-top: 24px;
}

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

.footer-legal a {
  color: var(--light-bg);
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  color: var(--light-bg);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--accent);
}

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

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

.cookie-content p {
  color: var(--light-bg);
  margin: 0;
  flex: 1 1 400px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: 25px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-buttons button:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.cookie-buttons .reject-btn {
  background: transparent;
  color: var(--white);
}

.cookie-buttons .reject-btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--accent);
  position: relative;
}

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

.cookie-modal-close:hover {
  background: var(--primary);
  color: var(--accent);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--primary);
}

.cookie-category {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  margin-bottom: 16px;
}

.cookie-category h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--secondary);
}

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

.cookie-toggle.active {
  background: var(--accent);
}

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

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

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .services-grid .service-card,
  .benefits-grid .benefit,
  .features-grid .feature {
    flex: 1 1 calc(50% - 24px);
  }
  
  .categories-grid .category,
  .categories-grid .category-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Adjust typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Single column layouts */
  .services-grid .service-card,
  .benefits-grid .benefit,
  .features-grid .feature,
  .team-grid .team-member,
  .testimonials-grid .testimonial-card,
  .contact-grid .contact-item,
  .mission-grid .mission,
  .mission-grid .vision,
  .categories-grid .category,
  .categories-grid .category-card,
  .posts-grid .post-card,
  .steps-grid .step,
  .links-grid .link-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-nav,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  /* Sections padding */
  section {
    padding: 30px 15px;
  }
  
  .introduction,
  .story,
  .mission-vision,
  .location,
  .contact-info,
  .features,
  .categories,
  .pricing,
  .legal-content {
    padding: 40px 24px;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 60px 24px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .price-big {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}