:root {
  --primary-black: #212121;
  --warm-beige: #d2b48c;
  --pure-white: #ffffff;
  --text-gray: #c0b5b5;
  --darker-black: #171717;
  /* Aliases for services page compatibility */
  --beige: var(--warm-beige);
  --beige-2: #c8a882;
  --white: var(--pure-white);
  --text: rgba(255,255,255,0.85);
  --muted: rgba(255,255,255,0.6);
  --soft: rgba(255,255,255,0.12);
  --card: #0f0f0f;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--pure-white);
  background: var(--primary-black);
  line-height: 1.6;
}

.playfair {
  font-family: 'Playfair Display', serif;
}

/* Navigation */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--primary-black);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255,255,255,0.1);
}

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

.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #d2b48c;
  letter-spacing: 0.5px;
  display: block;
}

.logo-studio {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #d2b48c;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -2px;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--warm-beige);
}

/* Services Dropdown */

.dropdown-menu {
  position: absolute;
  top: 100%;
  background: var(--primary-black);
  border-radius: 15px;
  width: 100vw;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-51%) translateY(0);
}

.dropdown-section {
  padding: 1.5rem;
}

.dropdown-section h4 {
  color: var(--warm-beige);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-bottom: 0.5rem;
}

.dropdown-item:hover {
  color: var(--warm-beige);
  border-left-color: var(--warm-beige);
  padding-left: 1rem;
}

.dropdown-item i {
  margin-right: 0.75rem;
  width: 20px;
  color: var(--warm-beige);
}

.dropdown-promo {
  background: linear-gradient(135deg, var(--warm-beige), #c8a882);
  color: var(--primary-black);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  border-radius: 0 0 15px 15px;
  grid-column: 1 / -1;
}

.dropdown-promo h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dropdown-promo p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.promo-code {
  background: var(--primary-black);
  color: var(--warm-beige);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Mobile Menu */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary-black);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--primary-black);
  position: sticky;
  top: 0;
  z-index: 1002;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-menu {
  list-style: none;
  padding: 1rem 2rem 2rem;
}

.mobile-nav-item {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--warm-beige);
}

.mobile-services-dropdown {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--warm-beige);
}

.mobile-services-dropdown .dropdown-item {
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-services-dropdown .dropdown-item:hover {
  border-left: none;
  padding-left: 0;
}

/* Hero Section */

.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 135deg, rgba(33, 33, 33, 0.8) 0%, rgba(33, 33, 33, 0.6) 50%, rgba(210, 180, 140, 0.3) 100% );
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 80px);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.7s both;
}

.btn-primary {
  background: var(--warm-beige);
  color: var(--primary-black);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.9s both;
}

.btn-primary:hover {
  background: #c8a882;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(210,180,140,0.3);
}

.hero-visual {
  text-align: center;
  font-size: 15rem;
  opacity: 0.1;
}

/* Ticker */

.ticker {
  background: var(--darker-black);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-size: 2em;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

.ticker-item {
  display: inline-block;
  margin-right: 4rem;
}

.ticker-item i {
  color: var(--warm-beige);
  margin-right: 0.5rem;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.about-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--pure-white);
  color: var(--primary-black);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--warm-beige);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #c8a882;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.service-card .btn {
  margin-top: auto;
}

/* Gallery Grid */

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

/* Gallery Page Styles */

.gallery-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--warm-beige);
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--warm-beige);
  color: var(--primary-black);
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item-full {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item-full:hover {
  transform: translateY(-5px);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--pure-white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.gallery-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-full:hover .gallery-actions {
  opacity: 1;
}

.gallery-actions i {
  background: rgba(0,0,0,0.7);
  color: var(--pure-white);
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-actions i:hover {
  background: var(--warm-beige);
  color: var(--primary-black);
}

/* Lightbox Styles */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--pure-white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--warm-beige);
}

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

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-info {
  background: rgba(33, 33, 33, 0.9);
  color: var(--pure-white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.lightbox-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--warm-beige);
}

.lightbox-info p {
  opacity: 0.8;
  margin: 0;
}

.lightbox-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(33, 33, 33, 0.8);
  color: var(--pure-white);
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  margin-left: 2rem;
}

.lightbox-next {
  margin-right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--warm-beige);
  color: var(--primary-black);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--pure-white);
  background: rgba(33, 33, 33, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #f5f1eb, var(--warm-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-black);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient( 135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100% );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-black);
  font-weight: 600;
  font-family: 'Dancing Script', cursive;
  align-self: flex-start;
  position: relative;
}

.gallery-logo::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-radius: 50%;
  z-index: -1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--warm-beige);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
}

.author-avatar::after {
  content: 'G';
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  background: #4285f4;
  border-radius: 50%;
  border: 2px solid var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: bold;
  z-index: 2;
}

.gallery-username {
  color: var(--pure-white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.gallery-username i {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Location */

.map-container {
  background: var(--pure-white);
  color: var(--primary-black);
  border-radius: 15px;
  padding: 0;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px 15px 0 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.map-wrapper iframe.loaded {
  opacity: 1;
}

.map-fallback {
  display: none;
  height: 450px;
  background: linear-gradient(135deg, #f5f1eb, #d2b48c);
  border-radius: 15px 15px 0 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #212121;
  text-align: center;
}

.map-fallback .map-placeholder {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-fallback h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #212121;
}

.map-fallback p {
  margin-bottom: 1rem;
  color: #666;
}

.map-info {
  padding: 2rem;
  background: var(--pure-white);
}

.map-placeholder {
  font-size: 4rem;
  color: var(--warm-beige);
  margin-bottom: 1rem;
}

/* Social Media */

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--warm-beige);
  color: var(--primary-black);
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--pure-white);
  transform: translateY(-5px);
}

/* Footer */

.footer {
  background: var(--darker-black);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
  color: var(--warm-beige);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-section p, .footer-section li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--warm-beige);
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--warm-beige);
  margin-right: 1rem;
  width: 20px;
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-table td:first-child {
  color: var(--warm-beige);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--pure-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--warm-beige);
  color: var(--primary-black);
}

/* Payment Methods */

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.payment-card {
  background: var(--pure-white);
  color: var(--primary-black);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 50px;
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210, 180, 140, 0.3);
  border-color: var(--warm-beige);
}

.payment-card i {
  font-size: 1.5rem;
}

.payment-card.cash {
  background: var(--warm-beige);
  color: var(--primary-black);
}

.payment-card.cash:hover {
  background: #c8a882;
}

/* Visa brand color */

.payment-card .fa-cc-visa {
  color: #1a1f71;
}

/* Mastercard brand color */

.payment-card .fa-cc-mastercard {
  color: #eb001b;
}

/* American Express brand color */

.payment-card .fa-cc-amex {
  color: #006fcf;
}

/* Discover brand color */

.payment-card .fa-cc-discover {
  color: #ff6000;
}

/* PayPal brand color */

.payment-card .fa-cc-paypal {
  color: #003087;
}

/* Apple Pay brand color */

.payment-card .fa-apple-pay {
  color: #000000;
}

/* Google Pay brand color */

.payment-card .fa-google-pay {
  color: #4285f4;
}

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Animations */

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

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Section */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Slick Slider Customization */

.slick-slider {
  margin-top: 3rem;
}

.services-slider {
  display: none;
}

.testimonials-slider {
  display: none;
}

.testimonials-slider .testimonial-card {
  background: var(--pure-white);
  color: var(--primary-black);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(210, 180, 140, 0.2);
  transition: all 0.3s ease;
  margin: 0 10px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-slider .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(210, 180, 140, 0.2);
}

.testimonials-slider .testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonials-slider .testimonial-stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonials-slider .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-gray);
  flex-grow: 1;
}

.testimonials-slider .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonials-slider .author-avatar {
  width: 45px;
  height: 45px;
  background: var(--warm-beige);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

.testimonials-slider .author-avatar::after {
  content: 'G';
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 18px;
  height: 18px;
  background: #4285f4;
  border-radius: 50%;
  border: 2px solid var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  font-weight: bold;
  z-index: 2;
}

.testimonials-slider .author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary-black);
}

.testimonials-slider .author-info span {
  font-size: 0.85rem;
  color: var(--warm-beige);
  font-weight: 500;
}

.services-slider .service-card {
  background: var(--pure-white);
  color: var(--primary-black);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  margin: 0 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-slider .service-card:hover {
  transform: translateY(-5px);
}

.services-slider .service-icon {
  font-size: 2.5rem;
  color: var(--warm-beige);
  margin-bottom: 1rem;
}

.services-slider .service-card h3 {
  color: #c8a882;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.services-slider .service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  color: var(--warm-beige);
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: var(--warm-beige);
}

.slick-prev, .slick-next {
  z-index: 1;
  width: 50px;
  height: 50px;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

.slick-prev:before, .slick-next:before {
  color: var(--warm-beige);
  font-size: 30px;
}

.slick-slide {
  padding: 0 10px;
}

/* Hide grid on tablet and mobile, show slider */

@media (max-width: 1024px) {
  .services-grid {
    display: none;
  }
  
  .services-slider {
    display: block;
  }
}

@media (max-width: 1024px) {
  .testimonials-grid {
    display: none;
  }
  
  .testimonials-slider {
    display: block;
  }
}

/* Show grid on desktop, hide slider */

@media (min-width: 1025px) {
  .services-slider, .testimonials-slider {
    display: none;
  }
}

.testimonial-card {
  background: var(--pure-white);
  color: var(--primary-black);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(210, 180, 140, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(210, 180, 140, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary-black);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--warm-beige);
  font-weight: 500;
}

/* Salon Interior Section */

.salon-interior {
  padding: 5rem 0;
  background: var(--darker-black);
}

.salon-swiper-container {
  border-radius: 13px;
  overflow: hidden;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
  height: 600px;
}

.salon-swiper {
  width: 100%;
  height: 100%;
}

.salon-slide {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.salon-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 33, 33, 0.4);
  z-index: 1;
}

.salon-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pure-white);
  padding: 2rem;
  max-width: 600px;
}

.salon-slide-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.salon-slide-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Swiper Navigation */

.salon-swiper .swiper-button-next, .salon-swiper .swiper-button-prev {
  color: var(--warm-beige);
  background: rgba(33, 33, 33, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -25px;
}

.salon-swiper .swiper-button-next::after, .salon-swiper .swiper-button-prev::after {
  font-size: 20px;
}

.salon-swiper .swiper-pagination-bullet {
  background: var(--warm-beige);
  opacity: 0.5;
}

.salon-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Utility Classes */

.d-flex {
  display: flex;
}

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

.align-center {
  align-items: center;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

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

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    font-size: 6rem;
    order: -1;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-slider .service-card {
    padding: 1.25rem;
    min-height: 220px;
  }
  
  .services-slider .service-icon {
    font-size: 2rem;
  }
  
  .services-slider .service-card h3 {
    font-size: 1.1rem;
  }
  
  .services-slider .service-card p {
    font-size: 0.9rem;
  }
  
  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
  }
  
  .slick-prev {
    left: -15px;
  }
  
  .slick-next {
    right: -15px;
  }
  
  .slick-prev:before, .slick-next:before {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-filters {
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.9rem;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .gallery-info h4 {
    font-size: 1rem;
  }
  
  .gallery-info p {
    font-size: 0.8rem;
  }
  
  .lightbox-content {
    width: 95%;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    margin-left: 1rem;
  }
  
  .lightbox-next {
    margin-right: 1rem;
  }
  
  .lightbox-info {
    padding: 1rem;
  }
  
  .lightbox-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .gallery-placeholder {
    height: 200px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .social-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .payment-card {
    padding: 0.5rem;
    min-height: 45px;
  }
}

@media (max-width: 768px) {
  .payment-card i {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-slider .testimonial-card {
    padding: 1.25rem;
    min-height: 260px;
  }
  
  .testimonials-slider .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .testimonials-slider .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonials-slider .author-info h4 {
    font-size: 0.95rem;
  }
  
  .testimonials-slider .author-info span {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .author-info h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .author-info span {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .ticker-item {
    margin-right: 2rem;
  }
}

@media (max-width: 768px) {
  .ticker-content {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .salon-swiper-container {
    height: 400px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .salon-slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .salon-slide-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .salon-swiper .swiper-button-next, .salon-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .salon-swiper .swiper-button-next::after, .salon-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    min-width: auto;
  }
  
  .map-wrapper {
    height: 350px;
  }
  
  .map-info {
    padding: 1.5rem;
  }
  
  .map-fallback {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-full {
    grid-template-columns: 1fr;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    margin: 0.2rem;
    font-size: 0.8rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .gallery-info {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-info h4 {
    font-size: 0.9rem;
  }
  
  .gallery-info p {
    font-size: 0.75rem;
  }
  
  .gallery-actions i {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .lightbox-content {
    width: 98%;
  }
  
  .lightbox-close {
    top: 5px;
    right: 15px;
    font-size: 25px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
  }
  
  .lightbox-prev {
    margin-left: 0.5rem;
  }
  
  .lightbox-next {
    margin-right: 0.5rem;
  }
  
  .lightbox-info {
    padding: 0.75rem;
  }
  
  .lightbox-info h3 {
    font-size: 1rem;
  }
  
  .lightbox-counter {
    bottom: 10px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .testimonials-slider .testimonial-card {
    padding: 1rem;
    min-height: 240px;
  }
  
  .testimonials-slider .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .testimonials-slider .testimonial-stars {
    margin-bottom: 1rem;
  }
  
  .testimonials-slider .testimonial-stars i {
    font-size: 1rem;
  }
  
  .testimonials-slider .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .testimonials-slider .author-info h4 {
    font-size: 0.9rem;
  }
  
  .testimonials-slider .author-info span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .services-slider .service-card {
    padding: 1rem;
    min-height: 200px;
  }
  
  .services-slider .service-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .services-slider .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .services-slider .service-card p {
    font-size: 0.85rem;
  }
  
  .slick-prev, .slick-next {
    width: 35px;
    height: 35px;
  }
  
  .slick-prev {
    left: -10px;
  }
  
  .slick-next {
    right: -10px;
  }
  
  .slick-prev:before, .slick-next:before {
    font-size: 20px;
  }
  
  .slick-dots {
    bottom: -40px;
  }
  
  .slick-dots li button:before {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 1.5rem;
  }
  
  .logo-studio {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }
}

.navbar-brand:hover .logo-main,
.navbar-brand:hover .logo-studio {
  color: #c8a882;
  transition: color 0.3s ease;
}

a:hover {
  color: #f5f1eb;
}

