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

/* =========================
   BODY & BACKGROUND
========================= */
body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
  background-attachment: fixed;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('whitecross-logo.png') center/500px no-repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* =========================
   LAYOUT WRAPPER
========================= */
.hero,
.reviews-section,
.location-wrapper,
footer {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  padding: 40px 20px;
  text-align: center;
}

/* =========================
   HEADER / BRAND
========================= */
.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
}

.main-logo-img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto -12px;
}

.main-logo {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: goldShine 3s linear infinite;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

/* =========================
   ANIMATIONS
========================= */
@keyframes goldShine {
  to { background-position: 200% center; }
}

@keyframes goldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70%  { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

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

/* =========================
   WALK-IN TAG
========================= */
.walk-in-tag {
  background: #d4af37;
  color: #000;
  padding: 5px 15px;
  font-weight: absolute;
  border-radius: 50px;
  margin-bottom: 50px;
  display: inline-block;
  font-size: 0.8rem;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));

}

/* =========================
   CARDS & SERVICES
========================= */
.card {
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  border: 1px solid #d4af37;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), inset 0 0 15px rgba(212, 175, 55, 0.08);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  color: #d4af37;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  font-size: 0.9rem;
}

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

.service-item.highlight {
  background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent);
  border-radius: 10px;
}

.s-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.price {
  font-weight: bold;
  color: #d4af37;
  font-size: 1rem;
}

.details-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 0.7rem;
  padding: 2px 8px;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.details-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

/* =========================
   ACCORDION
========================= */
.accordion-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s ease;
}

.accordion-toggle:hover {
  background: rgba(255,255,255,0.06);
}

.arrow {
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arrow.rotate {
  transform: rotate(180deg) scale(1.05);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.3s ease;
}

.accordion-content.open {
  padding-top: 12px;
  padding-bottom: 12px;
}

.accordion-content .service-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.accordion-content.open .service-item {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BOOKING FORM
========================= */
.form-header {
  font-family: 'Oswald', sans-serif;
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 25px;
  display: block;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.booking-form {
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #d4af37;
  margin-bottom: 30px;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.input-field {
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.input-field:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.05);
  background: rgba(0, 0, 0, 0.8);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

select.input-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}

select.input-field option {
  background: #111;
  color: #fff;
}

select.input-field optgroup {
  color: #d4af37;
  font-weight: 700;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  animation: goldPulse 2s infinite;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.submit-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
}

/* =========================
   BARBER GRID
========================= */
.barber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.barber-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #aaa;
  padding: 14px 8px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.barber-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.barber-btn.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 134, 11, 0.2));
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

.barber-icon {
  font-size: 1.2rem;
}

.barber-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   TIME SLOTS
========================= */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.time-slot-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #aaa;
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.12);
}

.time-slot-btn:hover:not(.unavailable) {
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.time-slot-btn.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(184, 134, 11, 0.3));
  border-color: #d4af37;
  color: #d4af37;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.time-slot-btn.unavailable {
  border-color: #1a1a1a;
  color: #333;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-slot-btn.after-hours {
  border-color: #2a2a1a;
  color: #666;
  font-size: 0.68rem;
}

.time-slots-empty {
  color: #555;
  font-size: 0.8rem;
  text-align: center;
  padding: 16px 0;
  font-style: italic;
  grid-column: 1 / -1;
}

/* =========================
   SERVICE GRID
========================= */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.service-category-label {
  color: #d4af37;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 4px 4px;
  border-bottom: 1px solid #222;
  margin-top: 8px;
}

.service-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #aaa;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.12);
}

.service-btn:hover {
  border-color: #d4af37;
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.service-btn.selected {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 134, 11, 0.2));
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.sb-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.sb-meta {
  font-size: 0.72rem;
  opacity: 0.8;
  white-space: nowrap;
  margin-left: 10px;
}

.service-btn.selected .sb-meta {
  opacity: 0.7;
}

.service-duration-note {
  color: #555;
  font-size: 0.68rem;
  font-style: italic;
  margin-bottom: 12px;
  padding: 0 4px;
}

.service-accordion-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-accordion-toggle:hover { color: #fff; }

.service-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-arrow.open {
  transform: rotate(180deg);
}

/* =========================
   SOCIAL BUTTONS
========================= */
.social-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 20px 0 4px;
  flex-wrap: wrap;
  padding: 0;
}

.social-buttons .btn {
  flex: 0 1 auto;
  position: relative;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
  max-width: 280px;
}

.btn-instagram:hover {
  filter: brightness(1.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.3);
  color: #fff;
}

.btn-instagram .insta-icon { fill: #fff; }

.insta-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.insta-icon path { fill: currentColor; }

/* =========================
   HOURS WIDGET
========================= */
.hours-widget {
  margin-top: 15px;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.open {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
  animation: pulse-green 2s infinite;
}

.status-dot.closed {
  background: #ff5252;
  box-shadow: 0 0 8px rgba(255, 82, 82, 0.5);
}

.hours-grid-new {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hours-row-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #aaa;
  transition: background 0.2s;
}

.hours-row-new.today {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #fff;
}

.hours-row-new.today .hours-day {
  color: #d4af37;
  font-weight: 700;
}

/* =========================
   REVIEWS
========================= */
.reviews-section {
  margin: 30px auto 0;
  padding: 30px 20px 20px;
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  border: 1px solid #d4af37;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.reviews-crown {
  color: #d4af37;
  font-size: 0.9rem;
}

.reviews-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
}

/* Always side by side */
.reviews-container {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.reviews-divider {
  width: 1px !important;
  height: 80px !important;
  background: rgba(212,175,55,0.2);
  flex-shrink: 0;
  align-self: center;
}

.review-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.review-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.review-platform h3 {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gold-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 2px 0 6px;
}

.rating-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4af37;
}

.stars {
  color: #d4af37;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.review-link:hover { border-bottom-color: #d4af37; }

/* =========================
   TESTIMONIALS
========================= */
.testimonials-wrap {
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  animation: slideTestimonials 18s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

.testimonial-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35), inset 0 0 10px rgba(212, 175, 55, 0.08);
  transform: translateY(-5px);
}

.t-stars {
  color: #d4af37;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.t-text {
  color: #ccc;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.t-name {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 700;
}

/* =========================
   GALLERY CAROUSEL
========================= */
.gallery-section {
  max-width: 600px;
  margin: 15px auto 15px;
  padding: 24px 20px 20px;
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  border: 1px solid #d4af37;
  border-radius: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  margin: 16px 0 12px;
  background: transparent;
  width: 100%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: #d4af37;
  transform: scale(1.3);
}

.gallery-see-more {
  display: inline-block;
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.gallery-see-more:hover { border-bottom-color: #d4af37; }

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  padding: 25px;
  border: 1.5px solid #d4af37;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  position: relative;
  text-align: left;
  font-size: 0.9rem;
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.45), inset 0 0 20px rgba(212, 175, 55, 0.12);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #d4af37;
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: bold;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 30px 20px 40px;
  margin-top: 15px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
  max-width: 80px;
}

.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 700;
}

.footer-address {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-link-btn {
  text-decoration: none;
  color: #000;
  background: #d4af37;
  padding: 8px 10px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: filter 0.2s;
  white-space: nowrap;
}

.footer-link-btn:hover { filter: brightness(1.1); }

.footer-dot {
  color: #444;
  font-size: 0.7rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 4px;
}

.footer-powered {
  font-size: 0.68rem;
  color: #444;
  font-style: italic;
}

/* =========================
   SEO HIDDEN
========================= */
.seo-hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* =========================
   LOCATION
========================= */
.location-hours-section {
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0a 100%);
  border: 1px solid #d4af37;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.location-container {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.map-box {
  flex: 1.2;
  border: 1px solid #d4af37;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
}

.info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
}

.info-box strong {
  color: #d4af37;
  font-size: 1rem;
}

.btn-map {
  display: block;
  background-color: #d4af37;
  color: #000;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.85rem;
  text-align: center;
}

/* =========================
   GLOBAL SECTION CENTERING
========================= */
section, .card, .booking-form, .social-buttons, .hours-widget, .reviews-section, .gallery-section {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* =========================
   RESPONSIVE — TABLET
========================= */
@media (max-width: 768px) {
  .main-logo {
    font-size: 2.6rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
  }

  .main-logo-img {
    width: 165px;
    margin-bottom: -10px;
  }

  .hero { padding: 25px 15px; }

  .form-header {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .card,
  .booking-form,
  .reviews-section,
  .gallery-section {
    margin-left: 15px;
    margin-right: 15px;
    padding: 18px;
    border-radius: 12px;
  }

  .booking-form { padding: 20px; }

  .input-field {
    padding: 14px;
    margin-bottom: 10px;
    font-size: 16px;
    min-height: 44px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 16px 0 4px;
  }

  .social-buttons .btn {
    width: auto;
    padding: 14px 24px;
    min-height: 44px;
  }

  .location-container { flex-direction: column; }
  .map-box { height: 220px; }

  .footer-links {
    gap: 5px;
    flex-wrap: wrap;
  }

  .footer-link-btn {
    padding: 6px 10px;
    font-size: 0.62rem;
    letter-spacing: 1px;
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .footer-address { font-size: 0.75rem; }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .time-slot-btn {
    padding: 12px 8px;
    font-size: 0.75rem;
    min-height: 44px;
  }

  .barber-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .barber-btn {
    padding: 14px 8px;
    min-height: 44px;
  }

  .carousel-slide img { max-height: 360px; }

  .details-btn {
    padding: 4px 10px;
    font-size: 0.65rem;
  }

  .modal-content {
    width: 95%;
    padding: 20px;
  }

  .section-title {
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 14px;
    min-height: 44px;
    font-size: 0.9rem;
  }
}

/* =========================
   RESPONSIVE — MOBILE
========================= */
@media (max-width: 480px) {
  body { font-size: 14px; }

  .main-logo { font-size: 2rem; }
  .main-logo-img { width: 140px; }
  .hero { padding: 20px 12px; }

  .form-header { font-size: 1.3rem; }

  .card,
  .booking-form,
  .reviews-section,
  .gallery-section {
    margin-left: 12px;
    margin-right: 12px;
    padding: 16px;
    border-radius: 10px;
  }

  .booking-form { padding: 16px; }

  .input-field {
    padding: 12px;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .service-item {
    padding: 8px 0;
    font-size: 0.85rem;
  }

  .price { font-size: 0.9rem; }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .time-slot-btn {
    padding: 10px 4px;
    font-size: 0.68rem;
    min-height: 40px;
  }

  .barber-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .barber-btn {
    padding: 10px 6px;
    font-size: 0.7rem;
    min-height: 40px;
  }

  .carousel-slide img { max-height: 300px; }

  .accordion-content {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .section-title {
    font-size: 0.9rem;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }


  
  .footer-links {
    gap: 4px;
    justify-content: center;
  }

  .footer-link-btn {
    padding: 5px 8px;
    font-size: 0.6rem;
    min-height: 32px;
  }

  .footer-copy { font-size: 0.65rem; }

  .modal-content {
    width: 90%;
    padding: 16px;
  }

  .submit-btn {
    padding: 12px;
    min-height: 40px;
    font-size: 0.85rem;
  }

  .social-buttons {
    margin: 16px 0 4px;
  }

  .btn-instagram {
    font-size: 0.78rem;
    padding: 12px 18px;
  }
}
.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 220px;
    margin: 0 auto 8px;
}

.main-logo-img {
    width: 220px;
    height: auto;
    display: block;
}

.main-logo-overlay {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShine 3s linear infinite;
    white-space: nowrap;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
    margin: 2;
}
