/*
 * Ink 102 Tattoos and Piercings - Main Styles
 * Consolidated general styles for the luxury tattoo studio website
 */

/* CSS Custom Properties */
:root {
  /* Colors */
  --primary-dark: #111111;
  --primary-light: #ffffff;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4e9c8;
  --accent-red: #d50032;
  --accent-red-hover: #b30029;
  --grey-100: #f9f9f9;
  --grey-200: #f0f0f0;
  --grey-300: #e0e0e0;
  --grey-500: #9e9e9e;
  --grey-700: #616161;
  --grey-900: #212121;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --space-unit: 8px;
  --space-xs: calc(var(--space-unit) * 1);     /* 8px */
  --space-sm: calc(var(--space-unit) * 2);     /* 16px */
  --space-md: calc(var(--space-unit) * 3);     /* 24px */
  --space-lg: calc(var(--space-unit) * 5);     /* 40px */
  --space-xl: calc(var(--space-unit) * 8);     /* 64px */
  --space-xxl: calc(var(--space-unit) * 12);   /* 96px */

  /* Other */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --container-max: 1400px;
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--grey-900);
  background-color: var(--primary-light);
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px); /* For fixed header and demo banner */
  overflow-x: hidden;
  font-weight: 300;
}

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

a {
  text-decoration: none;
  color: var(--grey-900);
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin-bottom: var(--space-md);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Global Container for consistent content width and padding */
.container {
  max-width: 1200px; /* Adjust as needed for your design */
  margin: 0 auto; /* Center the container */
  padding: 0 var(--space-lg); /* Default horizontal padding */
  width: 100%; /* Ensures it takes full width up to max-width */
  min-width: 0; /* Allows content to shrink */
}

section {
  padding: var(--space-xl) 0; /* Vertical padding for all sections */
  position: relative;
}

/* Utility Classes */
.text-accent {
  color: var(--accent-gold);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--grey-700);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 800px;
  text-align: center;
  margin: 0 auto var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 150px;
  height: 48px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-light);
  border: 1px solid var(--primary-light);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  border: 1px solid var(--primary-dark);
}

.btn-dark:hover {
  background-color: transparent;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-lg {
  padding: var(--space-md) var(--space-lg);
  font-size: 1.1rem;
  height: 56px;
}

/* Demo Banner */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, var(--accent-red), #dc2626);
  color: var(--primary-light);
  z-index: 1001;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.demo-banner-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.demo-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.demo-claim-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-claim-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--grey-900);
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-img {
  margin-right: var(--space-sm);
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .main {
  color: var(--grey-900);
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-primary);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 200;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--grey-900);
  border-radius: 1px;
  transition: var(--transition-normal);
}

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

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

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

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background-color: var(--primary-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: var(--transition-slow);
  padding: var(--space-xl) 0;
  box-shadow: var(--shadow-lg);
}

.nav-links.active {
  right: 0;
}

.nav-links li {
  margin: var(--space-sm) 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
  transition-delay: calc(0.05s * var(--item-index, 0));
}

.nav-links.active li {
  opacity: 1;
  transform: translateX(0);
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--grey-900);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  font-weight: 500;
  transition: var(--transition-normal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-normal);
}

.nav-links a:hover, .nav-links a:focus {
  color: var(--accent-gold);
}

.nav-links a:hover::after, .nav-links a:focus::after {
  width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--primary-light);
    background-color: var(--primary-dark);
    overflow: hidden;
    padding: 0; /* Horizontal padding handled by .container */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0; /* Assuming .container will wrap this or its parent */
    width: 100%;
    min-width: 0;
}

.hero-title {
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Fluid font size */
}

.hero-title .accent {
    display: block;
    font-size: 75%;
    margin: var(--space-sm) 0;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
    letter-spacing: clamp(0.02em, 2vw, 0.15em);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: var(--space-lg);
    color: var(--grey-300);
    font-style: italic;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    background-color: rgba(0, 0, 0, 0.6);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(5px);
    margin: var(--space-md) 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    min-width: 0;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-light);
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
}

.hero-contact-item i {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hero-contact-item span {
    color: var(--primary-light) !important;
}

.hero-controls {
    position: absolute;
    bottom: var(--space-lg);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 2;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%) !important;
    color: var(--primary-light);
    overflow: hidden;
    padding: var(--space-xl) 0; /* Vertical padding for the section */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

.about .section-title h2 {
    color: var(--primary-light);
}

.about .section-subtitle {
    color: var(--grey-300);
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr; /* Default: stack content vertically */
    gap: var(--space-lg);
    text-align: center; /* Centers text within this container */
    width: 100%;
    min-width: 0;
}

.about-hero {
    position: relative;
    margin-bottom: var(--space-lg);
}

.about-hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9; /* Common aspect ratio for images */
    width: 100%;
    margin-bottom: var(--space-lg);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.about-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.about-intro h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    font-style: italic;
    word-wrap: break-word;
    min-width: 0;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey-300);
    margin-bottom: var(--space-md);
    word-wrap: break-word;
    min-width: 0;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
    width: 100%;
    min-width: 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    font-family: var(--font-primary);
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    word-wrap: break-word;
    min-width: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    min-width: 0;
}

.value-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.value-content h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--primary-light);
    font-weight: 600;
    word-wrap: break-word;
    min-width: 0;
}

.value-content p {
    font-size: 1rem;
    color: var(--grey-300);
    margin-bottom: 0;
    line-height: 1.6;
    word-wrap: break-word;
    min-width: 0;
}

/* Featured Work Section */
.featured-work {
    background-color: var(--primary-light);
    padding: var(--space-xl) 0; /* Vertical padding for the section */
}

.featured-container {
    display: grid;
    grid-template-columns: 1fr; /* Default: stack content vertically */
    gap: var(--space-lg);
    align-items: center;
    width: 100%;
    min-width: 0;
}

.featured-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3; /* Maintain aspect ratio */
    width: 100%;
    min-width: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-content {
    width: 100%;
    min-width: 0;
}

.featured-content h2 {
    text-align: left;
    margin-bottom: var(--space-lg);
    word-wrap: break-word;
}

.featured-content h2::after {
    left: 0;
    transform: none;
}

.featured-content p {
    margin-bottom: var(--space-md);
    word-wrap: break-word;
}

/* Services Section */
.services {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: var(--space-xl) 0; /* Vertical padding for the section */
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

.services .section-title h2 {
    color: var(--primary-light);
}

.services .section-subtitle {
    color: var(--grey-300);
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default: single column */
    gap: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-header {
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    min-width: 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--primary-light);
    font-weight: 600;
    word-wrap: break-word;
    min-width: 0;
}

.service-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.service-description {
    color: var(--grey-300);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    word-wrap: break-word;
    min-width: 0;
}

.service-pricing {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    width: 100%;
    min-width: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    width: 100%;
    min-width: 0;
}

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

.service-name {
    color: var(--grey-300);
    word-wrap: break-word;
    min-width: 0;
    flex-basis: 70%;
    flex-shrink: 1;
}

.service-price {
    color: var(--accent-gold);
    font-weight: 500;
    word-wrap: break-word;
    min-width: 0;
    flex-basis: 30%;
    flex-shrink: 1;
    text-align: right;
}

.service-footer {
    margin-top: auto;
    padding-top: var(--space-sm);
    width: 100%;
    min-width: 0;
}

/* Gallery Section */
.gallery {
    background-color: var(--grey-100);
    padding: var(--space-xl) 0; /* Vertical padding for the section */
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
}

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    background: transparent;
    border: 1px solid var(--grey-300);
    border-radius: var(--border-radius-sm);
    color: var(--grey-700);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
    flex-shrink: 1;
    min-width: 0;
    word-wrap: break-word;
    white-space: normal;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-md);
    width: 100%;
    min-width: 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.gallery-icon {
    color: var(--primary-light);
    font-size: 2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-light);
    padding: var(--space-xl) 0; /* Vertical padding for the section */
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.testimonial-slide {
    display: none;
    padding: var(--space-lg);
    text-align: center;
    width: 100%;
    min-width: 0;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.testimonial-content {
    position: relative;
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 20px;
    font-size: 120px;
    font-family: var(--font-accent);
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--grey-700);
    word-wrap: break-word;
    min-width: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    word-wrap: break-word;
}

.author-info {
    font-size: 0.9rem;
    color: var(--grey-700);
    word-wrap: break-word;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-700);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

/* Calculator Section */
.calculator {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding: var(--space-xl) var(--space-md); /* Vertical padding for the section */
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.calculator-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for small screens */
    gap: var(--space-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    min-width: 0;
}

.calc-group {
    margin-bottom: var(--space-md);
    width: 100%;
}

.calc-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--grey-900);
}

.size-input-container {
    display: flex;
    flex-direction: column; /* Default to column for small screens */
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
    min-width: 0;
}

.size-input-container input[type="number"] {
    width: 100%;
    max-width: 80px;
    padding: var(--space-sm);
    border: 1px solid var(--grey-300);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    text-align: center;
}

.slider-container {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.slider-container input[type="range"] {
    width: 100%;
    margin-bottom: var(--space-xs);
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: linear-gradient(to right, var(--grey-300), var(--grey-700));
    border-radius: 4px;
    outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: none;
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.size-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--grey-700);
    width: 100%;
    min-width: 0;
}

.radio-group {
    display: flex;
    flex-direction: column; /* FORCED COLUMN for small screens by default */
    flex-wrap: nowrap;
    gap: var(--space-sm);
    width: 100%;
    min-width: 0;
}

.radio-option {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.radio-option input[type="radio"] {
    margin-right: var(--space-xs);
    accent-color: var(--accent-gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.radio-option label {
    flex-grow: 1;
    font-size: 1rem;
    margin-bottom: 0;
    word-wrap: break-word;
    min-width: 0;
}

.calc-group select {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--grey-300);
    border-radius: var(--border-radius-sm);
    background-color: white;
    font-size: 1rem;
    color: var(--grey-900);
}

.calc-submit {
    margin-top: var(--space-md);
    width: 100%;
}

.calc-submit button {
    width: 100%;
    padding: var(--space-md);
    font-weight: 600;
    letter-spacing: 1px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.calc-submit button:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* --- Calculator Result Display --- */
.calculator-result {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #000 100%);
    color: white;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--border-radius-md);
    text-align: center;
    display: none; /* Hidden by default, activated by JS */
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    width: 100%;
    min-width: 0;
}

.calculator-result.active {
    display: block;
    animation: fadeInUp 0.5s forwards;
}

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

.calculator-result h3 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    font-weight: 600;
    word-wrap: break-word;
    min-width: 0;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    word-wrap: break-word;
    min-width: 0;
}

.price-range-text {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--grey-300);
    word-wrap: break-word;
    min-width: 0;
}

.price-disclaimer {
    color: var(--grey-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    font-style: italic;
    word-wrap: break-word;
    min-width: 0;
}

.calculator-result .calc-submit {
    margin-top: var(--space-lg);
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.calculator-result .calc-submit button {
    width: 100%;
    padding: var(--space-md);
    font-weight: 600;
    letter-spacing: 1px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    word-wrap: break-word;
    white-space: normal;
    min-width: 0;
}

.calculator-result .calc-submit button:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Calculator Error styles */
.calculator-error {
    background-color: rgba(213, 0, 50, 0.1);
    color: var(--accent-red);
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
    margin-top: var(--space-sm);
    display: none;
    font-weight: 500;
    text-align: center;
    border-left: 4px solid var(--accent-red);
    word-wrap: break-word;
    min-width: 0;
}

/* Contact Section */
.contact {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: var(--space-xl) 0; /* Vertical padding for the section */
    position: relative;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.contact .section-title h2 {
    color: var(--primary-light);
}

.contact .section-subtitle {
    color: var(--grey-300);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
    min-width: 0;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-card-content {
    flex-grow: 1;
    min-width: 0;
}

.contact-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--primary-light);
    word-wrap: break-word;
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--grey-300);
    margin-bottom: 0;
    word-wrap: break-word;
}

.contact-map {
    position: relative;
    height: 300px; /* Kept fixed height here as maps often have specific height needs */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-width: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-hours {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    min-width: 0;
}

.hours-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-xs);
    word-wrap: break-word;
}

.hours-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.hours-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    width: 100%;
    min-width: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-width: 0;
}

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

.day {
    color: var(--grey-300);
    word-wrap: break-word;
    min-width: 0;
}

.time {
    color: var(--primary-light);
    font-weight: 500;
    word-wrap: break-word;
    min-width: 0;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--grey-300);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--grey-300);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-300);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
}

.modal-close:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2001;
  padding: 0 20px;
}

.modal-nav button {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modal-nav button:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* Phone animation */
.phone-shake {
  display: inline-block;
  animation: phone-shake 1.5s infinite ease;
}

@keyframes phone-shake {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(-10deg); }
  10% { transform: rotate(10deg); }
  15% { transform: rotate(-10deg); }
  20% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* Animated text */
.text-glow {
  animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7),
                0 0 35px rgba(212, 175, 55, 0.5),
                0 0 50px rgba(212, 175, 55, 0.3);
  }
}

/* Letter animation */
.animated-letter {
  display: inline-block;
  animation: letterPulse 4s infinite;
}

@keyframes letterPulse {
  0%, 100% {
    color: var(--primary-light);
  }
  50% {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5),
                0 0 20px rgba(212, 175, 55, 0.3);
  }
}

/* Welcome Popup */

.welcome-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.welcome-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.welcome-popup.hide {
  opacity: 0;
  transform: translateY(100px);
}

.welcome-content {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: welcomeGlow 2s infinite alternate;
}

@keyframes welcomeGlow {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4), 
                0 0 30px rgba(212, 175, 55, 0.2);
  }
}

.welcome-icon {
  font-size: 1.5rem;
  animation: welcomeSpark 1.5s infinite;
}

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

.welcome-text {
  flex: 1;
  color: var(--primary-light);
}

.welcome-text h3 {
  margin: 0 0 2px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-light);
}

.welcome-text .emphasis-102 {
  color: var(--accent-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  font-size: 1.1em;
}

.welcome-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--accent-gold);
  opacity: 0.9;
}

.welcome-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.welcome-close:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 480px) {
  .welcome-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  
  .welcome-content {
    max-width: none;
  }
}

/* Business Information Section */
.business-info {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.business-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.business-info .emphasis-102 {
  color: var(--accent-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.info-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-dark));
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-gold);
}

.info-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-header i {
  font-size: 1.5rem;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.info-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  transition: all 0.2s ease;
}

.info-item:hover {
  padding-left: var(--space-xs);
}

.info-item i {
  font-size: 1rem;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item.available i {
  color: #28a745;
}

.info-item.unavailable i {
  color: #dc3545;
}

.info-item span {
  font-size: 0.95rem;
  color: var(--grey-700);
  font-weight: 400;
}

.info-item.available span {
  color: var(--grey-800);
}

.info-item.unavailable span {
  color: var(--grey-500);
  text-decoration: line-through;
  opacity: 0.7;
}

/* Special Offers Banner */
.specials-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
  padding: var(--space-md) 0;
  position: relative;
  overflow: hidden;
}

.specials-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

.specials-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.specials-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flash-text {
  color: var(--accent-gold);
  animation: pulse 2s infinite;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.specials-header .emphasis-102 {
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.2em;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

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

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.special-deal {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.special-deal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold);
}

.special-deal:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-gold);
}

.flash-tattoos::before {
  background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.walk-ins::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.piercings::before {
  background: linear-gradient(90deg, #6f42c1, #e83e8c);
}

.deal-icon {
  background: var(--accent-gold);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.deal-content {
  flex: 1;
}

.deal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 2px 0;
}

.deal-content p {
  font-size: 0.85rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.3;
}

.regular-price {
  text-decoration: line-through;
  color: var(--grey-400);
  font-weight: 400;
}

.special-price {
  color: #e83e8c;
  font-weight: 700;
  font-size: 1.1em;
}

.deal-price,
.deal-badge,
.deal-save {
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--border-radius-md);
  text-align: center;
  min-width: 60px;
}

.deal-price {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-save {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-row {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-gold), #f4e9c8);
  color: var(--primary-dark);
  animation: callPulse 2s infinite;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--accent-gold);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, #f4e9c8, var(--accent-gold));
}

.cta-btn.secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(212, 175, 55, 0.6); }
}

/* Business Status Banner */
.business-status-banner {
  background: linear-gradient(135deg, #0f3460 0%, #1e5b8c 100%);
  color: white;
  padding: var(--space-md) 0;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.business-status-banner.open {
  background: linear-gradient(135deg, #0d5a2d 0%, #2d8f5a 100%);
}

.business-status-banner.closed {
  background: linear-gradient(135deg, #8b1538 0%, #c53030 100%);
}

.business-status-banner.closing-soon {
  background: linear-gradient(135deg, #b7791f 0%, #ed8936 100%);
}

.business-status-banner.opening-soon {
  background: linear-gradient(135deg, #553c9a 0%, #805ad5 100%);
}

.status-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulse 2s infinite;
}

.business-status-banner.closed .status-indicator {
  background-color: #ef4444;
}

.business-status-banner.closing-soon .status-indicator {
  background-color: #f59e0b;
}

.business-status-banner.opening-soon .status-indicator {
  background-color: #8b5cf6;
}

.status-text {
  font-weight: 600;
  font-size: 1rem;
}

.next-change {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

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

/* Back to Top Button with Status */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold-light);
}

.back-to-top:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.back-to-top-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary-light);
}

.status-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulse 2s infinite;
}

.back-to-top.closed .status-dot {
  background-color: #ef4444;
}

.back-to-top.closing-soon .status-dot {
  background-color: #f59e0b;
}

.back-to-top.opening-soon .status-dot {
  background-color: #8b5cf6;
}

.status-label {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--primary-light);
}

.back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 0.8rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    min-width: 120px;
  }
  
  .status-label {
    font-size: 0.7rem;
  }
  
  .back-icon {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

/* Smallest screens footer hours of service */
@media (max-width: 321px){
    .day {
        width: 100%;
    }
}