/* Modern Reset & Variables */
:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #f5f5f5;
  --text-color: #000000;
  --text-light: #666666;
  --bg-color: #ffffff;
  --card-bg: #f9f9f9;
  --border-color: #d3d3d3;
  --border: #d3d3d3;
  --dark-bg: #1f2937;
  --dark-header: #000000;
  --border-radius: 16px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Montserrat', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), #f5f5f5);
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
  transform: translateY(-1px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  flex-wrap: wrap;
  gap: 0.3rem;
  background: var(--dark-header);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.1;
  order: 0;
}

.logo-mark img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

nav a {
  margin-left: 1.2rem;
  font-weight: 600;
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary-color);
}

/* Hamburger Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 11;
  order: -1;
}

.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-7px, -7px);
}

.nav-menu {
  display: none;
  flex-direction: row;
  gap: 0;
  position: fixed;
  left: -100%;
  top: 70px;
  flex-direction: column;
  background-color: #000000;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  z-index: 10;
}

.nav-menu.active {
  display: flex;
  left: 0;
}

.nav-menu a {
  margin-left: 0;
  font-weight: 600;
  position: relative;
  color: #ffffff;
  display: block;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid rgba(255, 255, 255, 0.5);
  padding-left: calc(0.75rem - 4px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
  color: #ffffff;
}

.cta {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

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

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), #ffffff);
  color: var(--text-color);
  border-radius: 0;
  margin: 0 -1rem;
  padding-left: calc(1rem + 1rem);
  padding-right: calc(1rem + 1rem);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 1;
}

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

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  animation: fadeInUp 1s ease-out;
  text-shadow: none;
  color: var(--text-color);
}

.hero .lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.85;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  color: var(--text-light);
}

.features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
}

.feature:hover {
  background: rgba(220, 38, 38, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Sections */
section {
  padding: 3.5rem 0;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Grids */
.gallery,
.cards,
.testimonials {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gallery > div,
.card,
.review {
  background: var(--card-bg);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-align: center;
  padding: 1.2rem;
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
  border: 1px solid var(--border-color);
}

.gallery > div:hover,
.card:hover,
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.gallery img,
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition);
  margin-bottom: 1rem;
  filter: brightness(1);
}

.gallery img:hover,
.card img:hover {
  transform: scale(1.02);
  filter: brightness(0.95);
}

.price {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-color);
  margin: 1rem 0 0.5rem;
}

.small {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Booking Form */
.booking {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid var(--border-color);
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  display: block;
}

.booking input,
.booking select,
.booking textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-color);
}

.booking input:focus,
.booking select:focus,
.booking textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  transform: translateY(-1px);
  background-color: white;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  transition: all 0.3s ease;
}

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

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  margin-top: 1rem;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.btn.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

/* Reviews */
.rating {
  color: #333333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-links img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links img:hover {
  transform: translateY(-4px) scale(1.1);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

section > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

section > *:nth-child(odd) { animation: slideInLeft 0.8s ease-out forwards; }
section > *:nth-child(even) { animation: slideInRight 0.8s ease-out forwards; }

section > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

section > *:nth-child(1) { animation-delay: 0.1s; }
section > *:nth-child(2) { animation-delay: 0.2s; }
section > *:nth-child(3) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
  }

  .features {
    gap: 0.5rem;
  }

  .feature {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .gallery,
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .before-after {
    flex-direction: column !important;
  }

  .ba-image {
    min-width: 100% !important;
  }
  
  .features {
    flex-direction: column;
    align-items: center;
  }
  
  .hero {
    padding: 3rem 0;
    margin: 1rem 0;
  }
  
  section {
    padding: 2rem 0;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #000000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 0;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0.75rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    padding-left: calc(0.75rem - 4px);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
    color: #ffffff;
  }

  .nav-menu a::after {
    display: none;
  }

  .cta {
    margin-left: auto;
  }

  header {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  nav a::after {
    display: none;
  }
}

/* Utilities */
.muted { color: var(--text-light); }
.input-sm { padding: 0.5rem; border-radius: 8px; border: 1px solid var(--border-color); width: 100%; font-size: 0.875rem; }
.table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.table th, .table td { padding: 1rem; border-bottom: 1px solid var(--border-color); text-align: left; }
.badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.b-received { background: #e8e8e8; color: #000000; }
.b-progress { background: #d3d3d3; color: #000000; }
.b-ready { background: #c0c0c0; color: #000000; }
.b-completed { background: #a9a9a9; color: #ffffff; }

/* Enhanced gallery hover effects */
.ba-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Smooth form validation */
.booking input:invalid,
.booking select:invalid,
.booking textarea:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading animation for buttons */
.btn-primary.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Before & After Gallery Styles */
.before-after {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.ba-image {
  flex: 1;
  min-width: 250px;
  position: relative;
  text-align: center;
}

.ba-image img {
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
}

.gallery h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
    align-items: center;
  }
  
  .ba-image {
    min-width: 100%;
  }
}

/* Navigation Cart Icon */
.cart-nav-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.cart-icon {
  display: inline-block;
  vertical-align: middle;
}
.cart-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.cart-items {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-items-list {
  min-height: 100px;
}

.empty-cart {
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cart-item-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.cart-item-total {
  font-weight: 600;
  color: var(--primary-color);
}

.service-selection {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.service-selection h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-item.special-offer {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 0, 0, 0.05) 100%);
  position: relative;
  padding-top: 1.5rem;
}

.service-item.special-offer::before {
  content: "SPECIAL OFFER";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
}

.service-item:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-color);
}

.service-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.quantity {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-secondary {
  background: var(--text-light);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #555;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover:not(:disabled) {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .cart-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }
}

/* Navigation Icons */
.nav-link-with-icon {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.nav-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.cart-nav-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.cart-icon {
  display: inline-block;
  vertical-align: middle;
}