/* ================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================ */

:root {
  /* Color Palette */
  --color-primary: #4a3e34; /* Mocha Brown */
  --color-secondary: #a08b7a; /* Warm Taupe */
  --color-accent: #8d7a6b; /* Muted Sage */
  --color-background: #f7f4f0; /* Cream White */
  --color-background-alt: #fdfcfb;
  --color-text: #3a342f; /* Deep Brown */
  --color-text-light: #6b5f52;
  --color-text-lighter: #5d5245;
  --color-light: #e0d4c7;
  --color-lighter: #ede6db;
  --color-lightest: #f5f2ee;
  --color-white: #ffffff;
  --color-error: #d32f2f;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-accent) 100%
  );
  --gradient-background: linear-gradient(
    135deg,
    var(--color-background) 0%,
    var(--color-lighter) 100%
  );
  --gradient-background-alt: linear-gradient(
    135deg,
    var(--color-background) 0%,
    var(--color-lighter) 50%,
    var(--color-light) 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    var(--color-lightest) 0%,
    var(--color-lighter) 100%
  );
  --gradient-overlay: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

  /* Typography */
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-size-xs: 0.875rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.2rem;
  --font-size-2xl: 1.3rem;
  --font-size-3xl: 1.5rem;
  --font-size-4xl: 1.8rem;
  --font-size-5xl: 2rem;
  --font-size-6xl: 2.2rem;
  --font-size-7xl: 2.5rem;
  --font-size-8xl: 3.5rem;
  --line-height-base: 1.6;
  --line-height-tight: 1.2;
  --line-height-loose: 1.8;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 25px;
  --space-2xl: 30px;
  --space-3xl: 40px;
  --space-4xl: 60px;
  --space-5xl: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  --radius-full: 50%;
  --radius-pill: 30px;

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(160, 139, 122, 0.1);
  --shadow-md: 0 5px 15px rgba(160, 139, 122, 0.1);
  --shadow-lg: 0 6px 20px rgba(160, 139, 122, 0.2);
  --shadow-xl: 0 15px 30px rgba(160, 139, 122, 0.2);
  --shadow-2xl: 0 20px 40px rgba(160, 139, 122, 0.2);
  --shadow-button: 0 4px 15px rgba(160, 139, 122, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(160, 139, 122, 0.4);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease-out;

  /* Z-index */
  --z-dropdown: 1000;
  --z-modal: 100000;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 20px;
  --header-height: 80px;
}

/* ================================
   BASE STYLES
   ================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-background-alt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section header pattern */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-header h2 {
  font-size: var(--font-size-7xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.section-header p {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Card pattern */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(160, 139, 122, 0.1);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-gradient {
  background: var(--gradient-card);
}

/* ================================
   ACCESSIBILITY STYLES
   ================================ */

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

*:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-sm);
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: var(--z-modal);
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

button,
.btn-primary,
.btn-secondary {
  min-height: 44px;
  min-width: 44px;
}

/* Form error states */
.error-message {
  color: var(--color-error);
  font-size: var(--font-size-xs);
  margin-top: var(--space-xs);
  display: none;
}

.error-message.show {
  display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

/* ================================
   ACCESSIBILITY MEDIA QUERIES
   ================================ */

@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 3px solid;
  }

  *:focus {
    outline: 3px solid;
    outline-offset: 3px;
  }
}

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

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
  background: var(--gradient-background);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: var(--z-dropdown);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(175, 154, 122, 0.1);
}

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

.logo {
  font-size: var(--font-size-4xl);
  font-weight: bold;
  color: #7a6b5d;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-2xl);
}

.nav-links a {
  color: var(--color-text-lighter);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.cta-button {
  background: linear-gradient(135deg, #b39c87 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 12px var(--space-xl);
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-button);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  background: linear-gradient(rgba(74, 62, 52, 0.4), rgba(74, 62, 52, 0.6)),
    url("images/hero/hero-background.jpg") center/cover no-repeat,
    var(--gradient-background-alt);
  padding: 120px 0 var(--space-5xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23D6C5B0" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23B39C87" opacity="0.2"/><circle cx="40" cy="80" r="0.5" fill="%23E0D4C7" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

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

.hero h1 {
  font-size: var(--font-size-8xl);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2xl);
  color: var(--color-background);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   BUTTON SYSTEM
   ================================ */

.btn-primary,
.btn-secondary {
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  display: inline-block;
  cursor: pointer;
  text-align: center;
  line-height: var(--line-height-tight);
  min-width: 150px;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7a6b5d 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

/* Hero section secondary button variant */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
  padding: var(--space-5xl) 0;
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.service-card {
  background: var(--gradient-card);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: var(--font-size-5xl);
  color: var(--color-white);
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-3xl);
}

.service-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: bold;
  color: var(--color-secondary);
}

/* Professional Store Section */
.store {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f4f0 0%, #ede6db 100%);
}

.store-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.category-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(160, 139, 122, 0.1);
  box-shadow: 0 5px 15px rgba(160, 139, 122, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(160, 139, 122, 0.2);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.category-card h3 {
  color: #4a3e34;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.category-card p {
  color: #6b5f52;
  margin-bottom: 20px;
  line-height: 1.6;
}

.category-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.category-features li {
  color: #6b5f52;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.category-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a08b7a;
  font-weight: bold;
}

.brands-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.brands-section h3 {
  color: #4a3e34;
  font-size: 2rem;
  margin-bottom: 30px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.brand-logo {
  aspect-ratio: 3/2;
  background: linear-gradient(45deg, #f5f2ee, #ede6db);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(160, 139, 122, 0.1);
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(160, 139, 122, 0.2);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0%);
}

.brand-placeholder {
  aspect-ratio: 3/2;
  background: linear-gradient(45deg, #f5f2ee, #ede6db);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a08b7a;
  font-weight: 600;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.store-benefits {
  margin-bottom: 50px;
}

.store-benefits h3 {
  color: #4a3e34;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-item h4 {
  color: #4a3e34;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-item p {
  color: #6b5f52;
  line-height: 1.5;
}

.store-cta {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.store-cta h3 {
  color: #4a3e34;
  font-size: 2rem;
  margin-bottom: 15px;
}

.store-cta p {
  color: #6b5f52;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f4f0 0%, #ede6db 100%);
}

.gallery-item:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(45deg, #d6c5b0, #b39c87);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(160, 139, 122, 0.3);
}

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

.gallery-item img.lazy-loading {
  opacity: 0;
  background: linear-gradient(45deg, #d6c5b0, #b39c87);
}

.gallery-item img.loaded {
  opacity: 1;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.lightbox-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  text-align: center;
  max-width: 500px;
}

.lightbox-info h3 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.lightbox-info p {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-md);
}

.lightbox-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: var(--font-size-lg);
  font-weight: 600;
  z-index: 50;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    padding: var(--space-md);
  }

  .lightbox-image {
    max-height: 60vh;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-info {
    padding: var(--space-md);
    margin-top: var(--space-sm);
  }

  .lightbox-info h3 {
    font-size: var(--font-size-lg);
  }
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.about-story h3,
.about-promise h3 {
  color: #4a3e34;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
}

.about-story h3::after,
.about-promise h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #a08b7a 0%, #8d7a6b 100%);
  border-radius: 2px;
}

.about-story p,
.about-promise p {
  color: #6b5f52;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-story,
.about-promise {
  margin-bottom: 40px;
}

.promise-points {
  margin-top: 25px;
}

.promise-point {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.checkmark {
  background: linear-gradient(135deg, #a08b7a 0%, #8d7a6b 100%);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.promise-point p {
  margin: 0;
  color: #6b5f52;
}

.salon-showcase {
  position: sticky;
  top: 120px;
}

.showcase-item {
  aspect-ratio: 4/3;
  background: linear-gradient(45deg, #d6c5b0, #b39c87);
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(160, 139, 122, 0.3);
}

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

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

.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.stat-item {
  background: linear-gradient(135deg, #f5f2ee 0%, #ede6db 100%);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a08b7a;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b5f52;
  font-weight: 500;
}

/* Booking Section */
.booking {
  padding: 80px 0;
  background: white;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f5f2ee 0%, #ede6db 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(160, 139, 122, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4a3e34;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(160, 139, 122, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a08b7a;
  box-shadow: 0 0 0 3px rgba(160, 139, 122, 0.1);
}

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

/* Footer */
footer {
  background: #4a3e34;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #e0d4c7;
}

.footer-section p,
.footer-section a {
  color: #d6c5b0;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #e0d4c7;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(224, 212, 199, 0.2);
  color: #a08b7a;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(224, 212, 199, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0d4c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #e0d4c7;
  color: #4a3e34;
  transform: translateY(-2px);
}

/* ================================
   MOBILE MENU
   ================================ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-3xl);
  color: var(--color-text-lighter);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base);
}

.mobile-menu-btn:hover {
  background-color: rgba(93, 82, 69, 0.1);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
  /* Navigation */
  nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-background);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    padding: var(--space-lg);
    margin-top: 10px;
    z-index: var(--z-dropdown);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(160, 139, 122, 0.1);
  }

  .nav-links a:hover {
    background-color: rgba(160, 139, 122, 0.1);
    border-radius: var(--radius-sm);
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero section */
  .hero h1 {
    font-size: var(--font-size-7xl);
  }

  .hero p {
    font-size: var(--font-size-lg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grid layouts */
  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .showcase-stats {
    grid-template-columns: 1fr;
  }
}

/* ================================
   ANIMATIONS
   ================================ */

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

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

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

.fade-in-up {
  animation: fadeInUp var(--transition-slow);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f4f0 0%, #ede6db 100%);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}

.map-info h3 {
  color: #4a3e34;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.location-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(160, 139, 122, 0.1);
}

.detail-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.detail-item strong {
  color: #4a3e34;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.detail-item a {
  color: #a08b7a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: #4a3e34;
}

.map-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(160, 139, 122, 0.2);
  height: fit-content;
}

.map-embed iframe {
  border-radius: 20px;
  display: block;
}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-actions {
    justify-content: center;
  }

  .map-actions a {
    flex: 1;
    text-align: center;
    min-width: 140px;
  }

  .detail-item {
    padding: 15px;
  }
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f7f4f0 0%, #ede6db 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(160, 139, 122, 0.2);
  margin-top: 40px;
  animation: slideInUp 0.6s ease-out;
}

.form-success .success-icon {
  font-size: 4rem;
  color: #4a3e34;
  margin-bottom: 30px;
  display: block;
}

.form-success h3 {
  font-size: 2.2rem;
  color: #4a3e34;
  margin-bottom: 20px;
  font-weight: 700;
}

.form-success p {
  font-size: 1.2rem;
  color: #6b5f52;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .form-success {
    padding: 40px 20px;
    margin-top: 20px;
  }

  .form-success h3 {
    font-size: 1.8rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 20px;
  }

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

  .map-actions .btn-primary,
  .map-actions .btn-secondary {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

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

/* ================================
   FORM RESULT & SUCCESS MODAL
   ================================ */

/* Form result message (inline errors) */
.form-result {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: var(--font-size-sm);
}

.text-green-500 {
  color: #22c55e;
  background-color: #f0fdf4;
  border: 1px solid #86efac;
}

.text-red-500 {
  color: var(--color-error);
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
}

/* Form validation styles */
.needs-validation input:invalid,
.needs-validation select:invalid,
.needs-validation textarea:invalid {
  border-color: rgba(160, 139, 122, 0.2);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
}

.was-validated input:valid,
.was-validated select:valid,
.was-validated textarea:valid {
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

/* Success Modal Overlay */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--space-lg);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

/* Success Modal */
.success-modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  transform: scale(0.9);
  animation: modalSlideIn 0.3s ease forwards 0.1s;
}

@keyframes modalSlideIn {
  to {
    transform: scale(1);
  }
}

/* Modal Close Button */
.success-modal .modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: rgba(160, 139, 122, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-3xl);
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  line-height: 1;
}

.success-modal .modal-close:hover {
  background: rgba(160, 139, 122, 0.2);
  transform: rotate(90deg);
}

/* Success Icon */
.success-modal .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-6xl);
  color: var(--color-white);
  font-weight: bold;
  animation: successPulse 0.6s ease;
}

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

/* Modal Content */
.success-modal h3 {
  color: var(--color-primary);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.success-modal p {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-2xl);
}

/* Success Actions */
.success-modal .success-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.success-modal .modal-close-btn {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--space-md) var(--space-2xl);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-button);
  min-width: 120px;
}

.success-modal .modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
  .success-modal {
    padding: var(--space-3xl) var(--space-lg);
    margin: var(--space-lg);
  }

  .success-modal h3 {
    font-size: var(--font-size-3xl);
  }

  .success-modal p {
    font-size: var(--font-size-base);
  }

  .success-modal .success-icon {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-5xl);
  }

  .success-modal .success-actions {
    flex-direction: column;
    width: 100%;
  }

  .success-modal .modal-close-btn,
  .success-modal .btn-secondary {
    width: 100%;
  }
}
