@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cognac-primary: #8B4513;
  --cognac-light: #CD853F;
  --cognac-dark: #5D2E0C;
  --charcoal-dark: #1A1A1A;
  --charcoal-medium: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --gold-accent: #D4AF37;
  --gold-light: #E8D5A3;
  --cream-light: #FAF8F5;
  --cream-warm: #F5F0E8;
  --white-pure: #FFFFFF;
  --success-green: #2E7D32;
  --error-red: #C62828;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream-light);
  color: var(--charcoal-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

strong, p {
  color: inherit;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-accent), var(--cognac-primary));
  color: var(--white-pure);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  min-height: 56px;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--charcoal-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid var(--cognac-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--cognac-primary);
  color: var(--white-pure);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--charcoal-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--charcoal-light);
  max-width: 600px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-gold {
  color: var(--gold-accent);
}

.text-cognac {
  color: var(--cognac-primary);
}

.bg-cognac-gradient {
  background: linear-gradient(135deg, var(--cognac-dark) 0%, var(--cognac-primary) 50%, var(--cognac-light) 100%);
}

.bg-charcoal-gradient {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
}

.bg-cream {
  background-color: var(--cream-light);
}

.bg-cream-warm {
  background-color: var(--cream-warm);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
}

.gold-border {
  border: 1px solid var(--gold-accent);
}

.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-accent), var(--cognac-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-charcoal {
  background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cognac-primary), var(--gold-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-pure);
  font-size: 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-medium);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cognac-primary);
  background: rgba(139, 69, 19, 0.08);
}

.nav-cta {
  padding: 12px 24px;
  background: var(--charcoal-dark);
  color: var(--white-pure);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  margin-left: 16px;
}

.nav-cta:hover {
  background: var(--cognac-primary);
  color: var(--white-pure);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal-dark);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white-pure);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-light) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../assets/img/hero-leather-salon.webp') center/cover;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 46, 12, 0.9), rgba(139, 69, 19, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cognac-dark);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal-dark);
}

.hero-title span {
  background: linear-gradient(135deg, var(--cognac-primary), var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--cognac-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .hero-background {
    width: 100%;
    height: 50%;
    bottom: 0;
    top: auto;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 300px;
  }

  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 12px);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--white-pure);
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white-pure);
  border-radius: 20px;
  border: 1px solid rgba(139, 69, 19, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--cognac-primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 24px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cognac-primary), var(--gold-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 12px;
}

.service-description {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cognac-primary);
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal-light);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 46, 12, 0.8), rgba(139, 69, 19, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white-pure);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 32px;
  background: var(--white-pure);
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal-dark);
}

.review-location {
  font-size: 14px;
  color: var(--charcoal-light);
}

.review-stars {
  color: var(--gold-accent);
  font-size: 18px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 1024px) {
  .reviews-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-slider {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  background: var(--charcoal-dark);
  color: var(--white-pure);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding-right: 32px;
}

.contact-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  color: var(--white-pure);
}

.contact-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-pure);
}

.contact-form-wrapper {
  background: var(--white-pure);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid rgba(139, 69, 19, 0.2);
  border-radius: 10px;
  background: var(--cream-light);
  color: var(--charcoal-dark);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cognac-primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

footer {
  background: var(--charcoal-dark);
  color: var(--white-pure);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 16px;
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--white-pure);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.cookie-consent-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 12px;
}

.cookie-consent-text {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--cognac-primary);
  color: var(--white-pure);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--cognac-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--charcoal-dark);
  border: 1px solid rgba(139, 69, 19, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(139, 69, 19, 0.05);
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

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

.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-light) 100%);
  text-align: center;
}

.page-title {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--charcoal-dark);
  margin-bottom: 16px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--charcoal-light);
}

.page-breadcrumb a {
  color: var(--cognac-primary);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white-pure);
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold-accent);
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: var(--cognac-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-experience {
  font-size: 13px;
  color: var(--charcoal-light);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  position: relative;
  padding: 40px 32px;
  background: var(--white-pure);
  border-radius: 20px;
  border: 1px solid rgba(139, 69, 19, 0.1);
  text-align: center;
}

.process-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cognac-primary), var(--gold-accent));
  color: var(--white-pure);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.process-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 12px;
}

.process-step-description {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.faq-item {
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: var(--white-pure);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal-dark);
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--cream-warm);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cognac-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--cognac-primary);
  color: var(--white-pure);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--cream-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: var(--white-pure);
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.legal-content h2 {
  font-size: 24px;
  color: var(--charcoal-dark);
  margin: 32px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .legal-content {
    padding: 24px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream-light) 100%);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success-green), #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white-pure);
  margin: 0 auto 32px;
}

.thank-you-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--charcoal-dark);
  margin-bottom: 16px;
}

.thank-you-message {
  font-size: 18px;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

.service-detail-section {
  padding: 80px 0;
}

.service-detail-header {
  margin-bottom: 48px;
}

.service-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

.service-detail-content h2 {
  font-size: 28px;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 17px;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin: 24px 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.service-features-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--gold-accent);
  color: var(--white-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.service-features-list span {
  font-size: 16px;
  color: var(--charcoal-dark);
}

.pricing-table {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.pricing-table h3 {
  font-size: 24px;
  color: var(--charcoal-dark);
  margin-bottom: 24px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-item {
  font-size: 16px;
  color: var(--charcoal-dark);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cognac-primary);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-page-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

.gallery-page-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white-pure);
}

.gallery-page-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-page-category {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

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

.animate-pulse {
  animation: pulse 2s ease infinite;
}