/* ===================================
   CRYSTAL ARCADE - INDUSTRIAL MODERN DESIGN
   Complete CSS Stylesheet
   =================================== */

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

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

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

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  color: #e0e0e0;
}

h4 {
  font-size: 18px;
  color: #d0d0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

/* === HEADER === */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #B8941F;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

.logo .tagline {
  font-size: 12px;
  color: #B8941F;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

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

.main-nav a {
  color: #d0d0d0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #B8941F;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 148, 31, 0.3);
}

.cta-button:hover {
  background: #1a1a1a;
  color: #B8941F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 148, 31, 0.5);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 2px solid #B8941F;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(184, 148, 31, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1a1a1a;
  color: #B8941F;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #B8941F;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #B8941F;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #B8941F;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #B8941F;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #d0d0d0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 148, 31, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #B8941F;
  padding-left: 15px;
  background: rgba(184, 148, 31, 0.1);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #B8941F;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(184, 148, 31, 0.03) 50px,
    rgba(184, 148, 31, 0.03) 51px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #f5f5f5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.btn-primary {
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #B8941F;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(184, 148, 31, 0.3);
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #B8941F;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(184, 148, 31, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #d0d0d0;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #d0d0d0;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(208, 208, 208, 0.1);
  border-color: #B8941F;
  color: #B8941F;
  transform: translateY(-3px);
}

.trust-badge {
  font-size: 14px;
  color: #B8941F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 2px solid rgba(184, 148, 31, 0.3);
  display: inline-block;
  background: rgba(184, 148, 31, 0.05);
}

/* === HERO INTERIOR === */
.hero-interior {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 60px 20px 40px;
  border-bottom: 3px solid #B8941F;
}

.hero-interior h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #B8941F;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #d4af37;
}

/* === VALUE PROPOSITION === */
.value-proposition {
  background: #0f0f0f;
  padding: 80px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 20px;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

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

.value-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #B8941F 0%, #d4af37 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(184, 148, 31, 0.3);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(38%) saturate(514%) hue-rotate(8deg) brightness(93%) contrast(88%);
}

.value-card h3 {
  margin-bottom: 16px;
  color: #f5f5f5;
}

.value-card p {
  color: #a0a0a0;
  line-height: 1.7;
}

/* === SERVICES OVERVIEW === */
.services-overview {
  background: #1a1a1a;
  padding: 80px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #888;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 300px;
  max-width: 400px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #B8941F 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

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

.service-card p {
  color: #a0a0a0;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  color: #B8941F;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

.btn-link {
  color: #B8941F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #d4af37;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

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

/* === TESTIMONIALS === */
.testimonials {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 40px;
  border-left: 4px solid #B8941F;
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 148, 31, 0.4);
}

.testimonial-card .stars {
  color: #B8941F;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .customer-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-card .project-type {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CTA CONVERSION === */
.cta-conversion {
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta-conversion h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-conversion p {
  color: #2a2a2a;
  font-size: 18px;
  margin-bottom: 32px;
}

.benefit-bullets {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.benefit-bullets li {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-bullets li::before {
  content: '✓';
  color: #1a1a1a;
  font-weight: 700;
  font-size: 20px;
}

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

.cta-conversion .btn-primary {
  background: #1a1a1a;
  color: #B8941F;
  border-color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.4);
}

.cta-conversion .btn-primary:hover {
  background: #0f0f0f;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.6);
}

/* === FOOTER === */
footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #000 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #B8941F;
}

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

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

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

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

.footer-col .tagline {
  color: #B8941F;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

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

.footer-col nav a {
  color: #888;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col nav a:hover {
  color: #B8941F;
  padding-left: 10px;
}

.footer-col a[href^="mailto"],
.footer-col a[href^="tel"] {
  color: #B8941F;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 148, 31, 0.2);
}

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

/* === SERVICE DETAIL === */
.service-detail {
  padding: 80px 20px;
  background: #1a1a1a;
}

.service-detail.alt {
  background: #0f0f0f;
}

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

.service-content h2 {
  margin-bottom: 12px;
}

.service-tagline {
  font-size: 20px;
  color: #B8941F;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.included-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.included-list li {
  color: #b8b8b8;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.included-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #B8941F;
  font-size: 20px;
}

.price-info {
  font-size: 28px;
  color: #B8941F;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
}

/* === PROJECTS === */
.projects-intro,
.workshops-intro {
  background: #0f0f0f;
  padding: 60px 20px;
}

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

.category-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

.category-card h3 {
  margin-bottom: 16px;
  color: #f5f5f5;
}

.category-card p {
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-count {
  color: #B8941F;
  font-weight: 700;
  font-size: 18px;
}

.featured-projects {
  background: #1a1a1a;
  padding: 80px 20px;
}

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

.project-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(33.333% - 40px);
  min-width: 320px;
  max-width: 450px;
  position: relative;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #B8941F;
  color: #1a1a1a;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card h3 {
  margin-bottom: 8px;
}

.project-category {
  color: #B8941F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
}

.project-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(184, 148, 31, 0.2);
  padding-top: 20px;
}

.project-highlights li {
  color: #888;
  font-size: 14px;
}

/* === STATS === */
.project-stats,
.achievements {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.stat-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #B8941F;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #B8941F;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.stat-label {
  color: #a0a0a0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === WORKSHOPS === */
.workshop-categories {
  background: #1a1a1a;
  padding: 80px 20px;
}

.upcoming-workshops {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.workshop-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 40px);
  min-width: 320px;
  max-width: 550px;
  position: relative;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

.workshop-level {
  display: inline-block;
  background: rgba(184, 148, 31, 0.2);
  color: #B8941F;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid #B8941F;
}

.workshop-details {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.workshop-highlights {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(184, 148, 31, 0.05);
  border-left: 3px solid #B8941F;
}

.workshop-highlights li {
  color: #b8b8b8;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.workshop-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B8941F;
  font-weight: 700;
}

.workshop-card .price {
  font-size: 32px;
  color: #B8941F;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 24px 0;
}

.private-workshops {
  background: #1a1a1a;
  padding: 80px 20px;
}

.benefits-list {
  max-width: 600px;
  margin: 32px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  color: #b8b8b8;
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #B8941F;
  font-size: 20px;
  font-weight: 700;
}

/* === CONTACT === */
.contact-options {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.option-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.3);
}

.option-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(38%) saturate(514%) hue-rotate(8deg) brightness(93%) contrast(88%);
}

.contact-form-section {
  background: #1a1a1a;
  padding: 80px 20px;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 60px;
  border: 2px solid rgba(184, 148, 31, 0.2);
}

.form-placeholder {
  padding: 40px;
  background: rgba(184, 148, 31, 0.05);
  border: 2px dashed rgba(184, 148, 31, 0.3);
  text-align: center;
}

.form-note {
  color: #b8b8b8;
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-direct {
  margin-top: 24px;
}

.contact-direct p {
  margin-bottom: 12px;
  color: #d0d0d0;
}

.contact-direct a {
  color: #B8941F;
}

.contact-info {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.info-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
}

.info-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(38%) saturate(514%) hue-rotate(8deg) brightness(93%) contrast(88%);
}

.location-map {
  background: #1a1a1a;
  padding: 80px 20px;
}

.map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.directions {
  flex: 1 1 400px;
}

.directions h3 {
  margin-bottom: 24px;
  color: #B8941F;
}

.directions p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.map-placeholder {
  flex: 1 1 500px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 100px 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  text-align: center;
}

.map-note {
  color: #888;
  font-size: 16px;
}

.trust-signals {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.trust-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
}

.trust-card img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(38%) saturate(514%) hue-rotate(8deg) brightness(93%) contrast(88%);
}

/* === LEGAL PAGES === */
.legal-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 60px 20px 40px;
  border-bottom: 3px solid #B8941F;
}

.last-updated {
  color: #888;
  font-size: 14px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-content {
  background: #0f0f0f;
  padding: 80px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 60px;
  border: 2px solid rgba(184, 148, 31, 0.2);
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 148, 31, 0.2);
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #B8941F;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.content-wrapper ul li {
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
  color: #b8b8b8;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: -10px;
  color: #B8941F;
}

.content-wrapper a {
  color: #B8941F;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #d4af37;
}

.contact-short {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  font-size: 60px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid #B8941F;
  box-shadow: 0 8px 30px rgba(184, 148, 31, 0.4);
}

.next-steps {
  background: #0f0f0f;
  padding: 80px 20px;
}

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

.step-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(184, 148, 31, 0.2);
  color: #B8941F;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #B8941F;
}

.additional-resources,
.contact-info-reminder {
  background: #1a1a1a;
  padding: 80px 20px;
}

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

.resource-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 40px 30px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: #B8941F;
  transform: translateY(-5px);
}

.contact-details {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border: 2px solid rgba(184, 148, 31, 0.2);
  text-align: center;
}

.contact-details p {
  margin-bottom: 16px;
  color: #d0d0d0;
  font-size: 16px;
}

.testimonial-single {
  background: #0f0f0f;
  padding: 80px 20px;
}

.testimonial-featured {
  max-width: 800px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 50px;
  border-left: 4px solid #B8941F;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-featured .quote {
  font-size: 20px;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 24px;
}

.customer-info {
  color: #333;
  font-weight: 600;
}

.cta-alternative {
  background: #1a1a1a;
  padding: 80px 20px;
}

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

.cta-card {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 40px;
  border: 2px solid rgba(184, 148, 31, 0.2);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #d0d0d0;
  transition: all 0.3s ease;
}

.cta-card:hover {
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  border-color: #B8941F;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(184, 148, 31, 0.4);
}

.back-home,
.confirmation-details {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

/* === STORY & VALUES === */
.story,
.values {
  background: #0f0f0f;
  padding: 80px 20px;
}

.text-section {
  max-width: 800px;
  margin: 40px auto 0;
}

.text-section p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.office-hours {
  margin-top: 16px;
  color: #888;
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 24px 20px;
  z-index: 1998;
  border-top: 3px solid #B8941F;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #B8941F 0%, #d4af37 100%);
  color: #1a1a1a;
  border-color: #B8941F;
}

.cookie-btn-accept:hover {
  background: #1a1a1a;
  color: #B8941F;
}

.cookie-btn-reject {
  background: transparent;
  color: #d0d0d0;
  border-color: #666;
}

.cookie-btn-reject:hover {
  background: rgba(102, 102, 102, 0.1);
  border-color: #888;
}

.cookie-btn-settings {
  background: transparent;
  color: #B8941F;
  border-color: #B8941F;
}

.cookie-btn-settings:hover {
  background: rgba(184, 148, 31, 0.1);
}

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

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 3px solid #B8941F;
  box-shadow: 0 10px 60px rgba(184, 148, 31, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(184, 148, 31, 0.2);
}

.cookie-modal-header h3 {
  color: #f5f5f5;
  font-size: 24px;
}

.cookie-modal-close {
  font-size: 32px;
  color: #B8941F;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #B8941F;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #B8941F;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(184, 148, 31, 0.05);
  border-left: 3px solid #B8941F;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #666;
  border: 2px solid #666;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #B8941F;
  border-color: #B8941F;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle label {
  color: #d0d0d0;
  font-size: 14px;
  font-weight: 600;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid rgba(184, 148, 31, 0.2);
  flex-wrap: wrap;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .hero h1 { font-size: 36px; }
  
  /* Navigation */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px 50px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .value-grid,
  .service-grid,
  .category-grid,
  .testimonial-grid,
  .project-grid,
  .stats-grid,
  .workshop-grid,
  .options-grid,
  .info-grid,
  .trust-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .category-card,
  .testimonial-card,
  .project-card,
  .stat-card,
  .workshop-card,
  .option-card,
  .info-card,
  .trust-card,
  .step-card,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    width: 100%;
  }
  
  /* Text alignment on mobile */
  .map-info {
    flex-direction: column;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero h1 { font-size: 30px; }
  
  .logo img {
    height: 40px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-button,
  .hero-cta {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6, p {
    color: black;
  }
}