@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  --bg-primary: #09090C;
  --bg-panel-1: #17171D;
  --bg-panel-2: #1E1E29;
  --accent-gold: #E8C465;
  --accent-violet: #9A6CF6;
  --accent-rose: #F25089;
  --light-neutral: #F3ECE4;
  --accent-aqua: #5AD1D2;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --glow-gold: 0 0 20px rgba(232, 196, 101, 0.4), 0 0 40px rgba(232, 196, 101, 0.2);
  --glow-violet: 0 0 20px rgba(154, 108, 246, 0.4), 0 0 40px rgba(154, 108, 246, 0.2);
  --glow-rose: 0 0 20px rgba(242, 80, 137, 0.4), 0 0 40px rgba(242, 80, 137, 0.2);
  --shadow-cinematic: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--light-neutral);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(154, 108, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 196, 101, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242, 80, 137, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet), var(--light-neutral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  box-shadow: var(--glow-gold);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

p {
  font-size: 1.1rem;
  color: rgba(243, 236, 228, 0.85);
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-violet);
  text-shadow: var(--glow-violet);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 196, 101, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(9, 9, 12, 0.95);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: var(--glow-gold);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-violet);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: var(--light-neutral);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-violet));
  transition: width 0.3s ease;
  box-shadow: var(--glow-gold);
}

nav a:hover::before {
  width: 100%;
}

nav a:hover {
  color: var(--accent-gold);
}

.cta-button {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet));
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(232, 196, 101, 0.5);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  box-shadow: var(--glow-gold);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(9, 9, 12, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu li:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu a {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-neutral);
  text-shadow: var(--glow-violet);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--glow-gold);
}

.mobile-menu-close:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: rotate(90deg);
  box-shadow: 0 0 30px rgba(232, 196, 101, 0.6);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: 
    radial-gradient(ellipse at top, rgba(154, 108, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(232, 196, 101, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-panel-1) 100%);
  padding: 0;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(243, 236, 228, 0.9);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet));
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(232, 196, 101, 0.6);
}

.btn-secondary {
  padding: 1.2rem 3rem;
  background: transparent;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 35px;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 20px) rotate(5deg); }
}

.spotlight-section {
  background: var(--bg-panel-1);
  position: relative;
}

.spotlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(154, 108, 246, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.spotlight-card {
  background: var(--bg-panel-2);
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 196, 101, 0.1);
  box-shadow: var(--shadow-cinematic);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(232, 196, 101, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.spotlight-card:hover::before {
  top: -100%;
  right: -100%;
}

.spotlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold), var(--shadow-cinematic);
}

.spotlight-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  filter: drop-shadow(var(--glow-gold));
}

.spotlight-card h3 {
  color: var(--light-neutral);
  margin-bottom: 1rem;
}

.spotlight-card p {
  color: rgba(243, 236, 228, 0.7);
}

.spotlight-card img {
  transition: transform 0.4s ease;
}

.spotlight-card:hover img {
  transform: scale(1.05);
}

.material-item img {
  transition: transform 0.4s ease;
}

.material-item:hover img {
  transform: scale(1.1);
}

.photozones-section {
  background: var(--bg-primary);
  position: relative;
}

.photozones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.photozone-card {
  background: var(--bg-panel-1);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.photozone-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(154, 108, 246, 0.2), rgba(232, 196, 101, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.photozone-card:hover::after {
  opacity: 1;
}

.photozone-card:hover {
  transform: scale(1.05);
  border-color: var(--accent-violet);
  box-shadow: var(--glow-violet);
}

.photozone-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--bg-panel-2), var(--bg-panel-1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent-gold);
  position: relative;
}

.photozone-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent-gold);
  border-radius: 15px;
  opacity: 0.3;
  box-shadow: inset var(--glow-gold);
}

.photozone-content {
  padding: 2rem;
}

.photozone-content h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.materials-section {
  background: var(--bg-panel-2);
  position: relative;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.material-item {
  background: var(--bg-panel-1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  transform: rotate(-2deg);
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 196, 101, 0.2);
  overflow: hidden;
}

.material-item:nth-child(even) {
  transform: rotate(2deg);
}

.material-item:hover {
  transform: rotate(0deg) translateY(-10px);
  border-color: var(--accent-rose);
  box-shadow: var(--glow-rose);
}

.material-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--accent-rose);
  filter: drop-shadow(var(--glow-rose));
}

.gallery-section {
  background: var(--bg-primary);
  position: relative;
}

.gallery-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: var(--bg-panel-1);
  color: var(--light-neutral);
  border: 1px solid rgba(232, 196, 101, 0.3);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet));
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: var(--glow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
  background: var(--bg-panel-2);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(154, 108, 246, 0.3), rgba(232, 196, 101, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-item.hidden {
  display: none;
}

.process-section {
  background: var(--bg-panel-1);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-violet), var(--accent-gold));
  z-index: 0;
  box-shadow: var(--glow-gold);
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--bg-panel-2);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(232, 196, 101, 0.3);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet));
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--glow-gold);
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-panel-1), var(--bg-panel-2));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 196, 101, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(232, 196, 101, 0.1);
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: left;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  text-align: left;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(243, 236, 228, 0.7);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 196, 101, 0.1);
  color: rgba(243, 236, 228, 0.6);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-panel-1);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 196, 101, 0.2);
  box-shadow: var(--shadow-cinematic);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-panel-2);
  border: 1px solid rgba(232, 196, 101, 0.3);
  border-radius: 10px;
  color: var(--light-neutral);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.angled-separator {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin: 4rem 0;
}

.angled-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--bg-panel-1);
  transform: rotate(-2deg);
  border-top: 2px solid rgba(232, 196, 101, 0.2);
  border-bottom: 2px solid rgba(232, 196, 101, 0.2);
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .spotlight-grid,
  .photozones-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-steps::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .header-container {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 0.8rem;
  }

  .spotlight-card,
  .photozone-card,
  .material-item {
    padding: 1.5rem 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .form-container {
    padding: 1.5rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .process-step {
    min-width: 100%;
  }
}

.form-container ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.form-container ul li {
  margin-bottom: 0.5rem;
  color: rgba(243, 236, 228, 0.85);
}

.form-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.form-container h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.form-container a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.form-container a:hover {
  color: var(--accent-violet);
}

@media (max-width: 768px) {
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .form-container h2 {
    font-size: 1.8rem;
  }
  
  .form-container h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 320px) {
  .form-container {
    padding: 1.5rem 1rem;
  }
  
  .form-container h2 {
    font-size: 1.5rem;
  }
  
  .form-container ul {
    margin-left: 1.5rem;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
}

.error-content h1 {
  font-size: 8rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.error-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .error-content h1 {
    font-size: 5rem;
  }
  
  .error-content p {
    font-size: 1.2rem;
  }
  
  .thank-you-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 320px) {
  .error-content h1 {
    font-size: 4rem;
  }
  
  .error-content p {
    font-size: 1rem;
  }
  
  .thank-you-content {
    padding: 1.5rem 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.5rem;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
}

.thank-you-content {
  max-width: 600px;
  padding: 3rem;
  background: var(--bg-panel-1);
  border-radius: 20px;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--glow-gold);
}

.thank-you-content h1 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

