/* ==========================================================================
   Raissa Beauty - Luxury Hair Salon Stylesheet (Black & Gold)
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(170,124,17,0.1) 0%, rgba(212,175,55,0.15) 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.45);
  --gold-glow-btn: 0 4px 15px rgba(212, 175, 55, 0.4);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.6);
  --text-light: #ffffff;
  --text-muted: #b5b5b5;
  --text-dark: #121212;
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-hover: rgba(212, 175, 55, 0.6);
  --glass-bg: rgba(18, 18, 18, 0.75);
  --glass-border: rgba(212, 175, 55, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* Light Theme Variables */
body.light-theme {
  --bg-dark: #fcfcfc;
  --bg-darker: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #fdfaf2;
  --text-light: #1c1c1c; /* primary text is dark */
  --text-muted: #555555; /* secondary text is muted dark */
  --text-dark: #ffffff;  /* text inside gold buttons/badges is white */
  --border-gold: rgba(170, 124, 17, 0.25);
  --border-gold-hover: rgba(170, 124, 17, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(170, 124, 17, 0.2);
}

/* --- Base Reset & Scrollbar --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --- Typography & Structural Utilities --- */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 1px;
}

p, span, li, a, button, input, select, textarea {
  font-family: var(--font-sans);
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--gold-primary);
}

.gold-text {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-justify {
  text-align: justify;
}

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

.bg-darker-section {
  background-color: var(--bg-darker);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .sub-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

/* Custom Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark) !important;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow-btn);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow-strong);
  color: var(--bg-darker) !important;
}

.btn-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 31px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--text-dark) !important;
  border-color: transparent;
  box-shadow: var(--gold-glow-btn);
  transform: translateY(-3px);
}

/* --- Loader / Spinner --- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-darker);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader .spinner-logo {
  max-width: 120px;
  margin-bottom: 30px;
  animation: logoPulse 2s infinite ease-in-out;
}

#loader .loader-line-wrap {
  width: 150px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

#loader .loader-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  animation: lineLoad 1.5s infinite linear;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 10px rgba(212,175,55,0.6)); }
}

@keyframes lineLoad {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

/* --- Header / Navigation --- */
.navbar {
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar.navbar-scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 60px;
  transition: var(--transition-smooth);
}
.navbar.navbar-scrolled .navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 15px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 30px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-primary) !important;
}

.navbar-toggler {
  border-color: var(--border-gold);
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* Hero Background Parallax Option */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(10, 10, 10, 0.95) 30%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.3) 100%), url('../images/raissa.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -1;
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
}

@media (max-width: 991px) {
  .hero-bg {
    background-image: linear-gradient(to top, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.7) 100%), url('../images/raissa.jpg');
    background-position: top center;
  }
}

.hero-content {
  padding-top: 80px;
}

.hero-subtitle {
  font-size: 0.95rem;
  letter-spacing: 5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 40px;
}

/* Hero Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}
.scroll-down:hover {
  color: var(--gold-primary);
}
.scroll-down i {
  margin-top: 10px;
  animation: bounce 2s infinite;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* --- About Section --- */
.about-image-wrapper {
  position: relative;
  padding: 15px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid var(--gold-primary);
  z-index: 1;
  transform: translate(30px, 30px);
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover::before {
  transform: translate(15px, 15px);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-features {
  margin-top: 40px;
}

.about-feature-item {
  display: flex;
  margin-bottom: 25px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
  background: var(--gold-gradient-soft);
  transition: var(--transition-smooth);
}

.about-feature-item:hover .about-feature-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
  transform: rotateY(180deg);
}

.about-feature-content h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.about-feature-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-img {
    height: 400px;
  }
}

/* --- Services Section --- */
.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-soft);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1.75rem;
  margin: 0 auto 30px auto;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  min-height: 72px; /* standardizes card size */
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
}

.service-card .btn-outline-gold {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* --- Pricing Section --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap; /* allows clean wrapping on mobile */
}

.pricing-tabs .btn-tab {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.pricing-tabs .btn-tab.active,
.pricing-tabs .btn-tab:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--gold-glow-btn);
}

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-row {
  display: none;
}

.pricing-row.active {
  display: flex;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.pricing-item:hover {
  border-bottom-color: var(--gold-primary);
}

.pricing-name-desc {
  max-width: 75%;
}

.pricing-item h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.pricing-item:hover h4 {
  color: var(--gold-primary);
}

.pricing-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pricing-cost {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-primary);
  font-weight: 700;
}

/* --- Catalogue / Gallery Section --- */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter .btn-filter {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-filter .btn-filter.active,
.gallery-filter .btn-filter:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--gold-glow-btn);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  border: 1px solid var(--gold-primary);
  transform: scale(0.95);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: scale(1);
}

.gallery-overlay h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-overlay span {
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

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

/* Hide filtered out items */
.gallery-item.hide {
  display: none;
}

/* --- Testimonials Section (Swiper Custom) --- */
.testimonials-slider {
  padding: 20px 0 50px 0;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.testimonial-stars {
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  opacity: 1 !important;
  box-shadow: 0 0 5px var(--gold-primary);
}

/* --- Booking & Appointment Section --- */
.booking-section {
  position: relative;
  z-index: 1;
}

.booking-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 50px;
  position: relative;
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 4px;
  background: var(--gold-gradient);
}

@media (max-width: 768px) {
  .booking-wrapper {
    padding: 30px 20px;
  }
}

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

.form-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.form-control-custom {
  background: var(--bg-darker) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-light) !important;
  border-radius: 0 !important;
  padding: 12px 18px !important;
  font-size: 0.95rem;
  width: 100%;
  transition: var(--transition-smooth) !important;
}

.form-control-custom:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;
  outline: none;
}

/* Styling native date and time picker in dark mode */
.form-control-custom::-webkit-calendar-picker-indicator {
  filter: invert(75%) sepia(80%) saturate(400%) hue-rotate(5deg);
  cursor: pointer;
}

/* Coiffeur Selection Cards */
.hairdresser-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 5px;
}

.hairdresser-card {
  border: 1px solid var(--glass-border);
  background: var(--bg-darker);
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.hairdresser-card:hover {
  border-color: var(--gold-primary);
}

.hairdresser-card.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.hairdresser-card.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 12px;
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.hairdresser-card h5 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--text-light);
}

.hairdresser-card span {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

/* --- Contact & Info Section --- */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-right: 20px;
  flex-shrink: 0;
  background: var(--gold-gradient-soft);
}

.contact-info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Opening hours styled badge */
.opening-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 8px;
}
.opening-badge.open {
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid #28a745;
}
.opening-badge.closed {
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid #dc3545;
}

/* Google Maps Iframe */
.map-container {
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* elegant black and dark gold look */
  -webkit-filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* --- Footer Section --- */
.footer-top {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 50px 0;
}

.footer-logo {
  max-height: 90px;
  margin-bottom: 25px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  border-color: var(--gold-primary);
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

.footer-links-title {
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-links a i {
  font-size: 0.7rem;
  margin-right: 10px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

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

.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-bottom {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 25px 0;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--gold-primary);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.whatsapp-text {
  background: var(--bg-card);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  margin-right: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
}

.whatsapp-widget:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  transition: var(--transition-smooth);
  animation: pulseWhatsapp 2s infinite;
}

.whatsapp-widget:hover .whatsapp-btn {
  transform: scale(1.1) rotate(10deg);
  background: #20ba5a;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 575px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-text {
    display: none; /* hide label on small screens */
  }
}

/* --- Controls for Language & Theme Switching --- */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ctrl {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0;
}

.btn-ctrl:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Light Theme specifics adjustments */
body.light-theme {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

body.light-theme .hero-section {
  /* keep hero dark for visual style, but ensure correct contrast if content changes */
}

body.light-theme .navbar.navbar-scrolled {
  background: var(--glass-bg);
  border-bottom-color: var(--glass-border);
}

body.light-theme .navbar-nav .nav-link {
  color: var(--text-light) !important;
}

body.light-theme .navbar-nav .nav-link:hover,
body.light-theme .navbar-nav .nav-link.active {
  color: var(--gold-dark) !important;
}

body.light-theme .btn-ctrl {
  color: var(--gold-dark);
  border-color: var(--border-gold);
}

body.light-theme .btn-ctrl:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

body.light-theme .service-card:hover {
  box-shadow: 0 10px 30px rgba(170, 124, 17, 0.15);
}

body.light-theme .testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(170, 124, 17, 0.15);
}

body.light-theme .pricing-item {
  border-bottom-color: rgba(170, 124, 17, 0.15);
}

body.light-theme .pricing-item:hover {
  border-bottom-color: var(--gold-dark);
}

body.light-theme .map-container iframe {
  filter: grayscale(1) invert(0) contrast(1.1); /* light grayscale map in light mode */
  -webkit-filter: grayscale(1) invert(0) contrast(1.1);
}

/* Responsive adjustments for Pricing tabs on mobile */
@media (max-width: 768px) {
  .pricing-tabs {
    gap: 8px;
    margin-bottom: 35px;
  }
  .pricing-tabs .btn-tab {
    padding: 8px 16px;
    font-size: 0.75rem;
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pricing-tabs .btn-tab {
    flex: 1 1 100%; /* stack items on extra small screens */
  }
  
  .nav-controls {
    margin-top: 15px;
    width: 100%;
    justify-content: flex-start;
  }
}
