/* ============================================
   HOBBYHUB - MONOCHROME SOPHISTICATED DESIGN
   Sophisticated black/white/gray aesthetic
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* SOPHISTICATED MONOCHROME TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  letter-spacing: -0.02em;
}

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

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

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #000000;
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ffffff;
  padding-left: 24px;
}

/* HEADER */
header {
  background: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

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

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

.cta-button {
  background: #000000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-button:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* BUTTONS - MONOCHROME STYLE */
.btn-primary,
.btn-secondary,
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #333333;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn {
  background: #ffffff;
  color: #000000;
  padding: 12px 24px;
  font-size: 14px;
}

.btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* HERO SECTION - DRAMATIC MONOCHROME */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

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

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

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.badge img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  color: #000000;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555555;
}

/* FEATURES SECTION */
.features {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card p {
  color: #555555;
  font-size: 15px;
}

/* SERVICE/WORKSHOP CARDS */
.service-grid,
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card,
.workshop-card {
  flex: 1 1 340px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.workshop-card:hover {
  transform: translateY(-8px);
  border-color: #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.workshop-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  color: #000000;
}

.service-card p,
.workshop-card p {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.workshop-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 14px;
}

.workshop-meta span {
  background: #f0f0f0;
  padding: 6px 14px;
  border-radius: 4px;
  color: #333333;
  font-weight: 500;
}

.included {
  margin: 20px 0;
}

.included li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #555555;
  font-size: 14px;
}

.included img {
  width: 18px;
  height: 18px;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* BENEFITS SECTION */
.benefits {
  background: #000000;
  color: #ffffff;
}

.benefits h2 {
  color: #ffffff;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

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

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #f8f8f8;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #000000;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

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

.author {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  font-style: normal;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
  pointer-events: none;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

/* CONTACT INFO */
.contact-info,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-card,
.method-card {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.info-card:hover,
.method-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-card img,
.method-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.info-card h3,
.method-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.info-card p,
.method-card p {
  color: #555555;
  font-size: 15px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.breadcrumb {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

/* FILTER BUTTONS */
.category-filters,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn,
.pill {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.pill:hover {
  border-color: #000000;
  color: #000000;
}

.filter-btn.active,
.pill.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* VALUES & STATS */
.values-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card,
.stat-card {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.value-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}

/* BLOG CARDS */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.blog-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #000000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-tag {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #777777;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* COURSE LISTINGS */
.course-listings {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.course-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.course-item:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.course-header {
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 14px;
}

.course-meta span {
  color: #555555;
  font-weight: 500;
}

.course-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.spots {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}

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

.faq-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #000000;
}

.faq-item p {
  color: #555555;
  margin: 0;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 48px;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
}

.content-section h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 28px;
}

.content-section h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 22px;
}

.content-section ul,
.content-section ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-section li {
  margin-bottom: 12px;
  color: #555555;
  list-style: disc;
  padding-left: 8px;
}

.last-updated {
  font-size: 14px;
  color: #777777;
  font-style: italic;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.confirmation {
  font-size: 20px;
  color: #555555;
  max-width: 600px;
  margin: 0 auto 16px;
}

.next-steps {
  font-size: 16px;
  color: #777777;
  margin-bottom: 40px;
}

/* PROJECT GRID (GALLERY) */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.project-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #f0f0f0;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 24px;
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.creator {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* FORMS */
.form-info {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
}

.contact-details {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}

.contact-details p {
  margin-bottom: 12px;
  color: #555555;
}

/* FACILITIES */
.facilities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.facilities li {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555555;
}

.facilities img {
  width: 20px;
  height: 20px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* POLICY TABLE */
.policy-table {
  max-width: 700px;
  margin: 0 auto;
}

.policy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #e0e0e0;
  background: #ffffff;
}

.policy-row:first-child {
  border-top: 2px solid #e0e0e0;
}

.timeframe {
  font-weight: 600;
  color: #000000;
}

.refund {
  color: #555555;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 30px;
  border-top: 3px solid #333333;
}

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

.footer-col {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  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;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #e0e0e0;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.cookie-accept {
  background: #ffffff;
  color: #000000;
}

.cookie-accept:hover {
  background: #f0f0f0;
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #ffffff;
}

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

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

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

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 24px;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
}

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

.category-header h3 {
  font-size: 18px;
  margin: 0;
}

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

.toggle-switch.active {
  background: #000000;
}

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

.toggle-switch.active::after {
  left: 27px;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Cards */
  .feature-card,
  .service-card,
  .workshop-card,
  .value-card,
  .stat-card,
  .blog-card,
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Flexbox layouts */
  .cta-buttons,
  .trust-badges,
  .benefits-grid,
  .course-info,
  .facilities ul {
    flex-direction: column;
  }
  
  .benefit-item {
    flex: 1 1 100%;
  }
  
  .facilities li {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1;
    text-align: center;
  }
  
  /* Policy table */
  .policy-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .content-section {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 28px;
  }
}

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

.feature-card,
.service-card,
.workshop-card,
.testimonial-card,
.blog-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}