/* ============================================================
   MASTER FADE — Main Stylesheet
   Theme: Gold #C9A24D | Black #0F0F0F
   ============================================================ */

/* Google Fonts imported in HTML */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:           #C9A24D;
  --gold-light:     #E8C47A;
  --gold-dark:      #A67C3A;
  --gold-gradient:  linear-gradient(135deg, #A67C3A 0%, #C9A24D 40%, #E8C47A 70%, #C9A24D 100%);
  --gold-subtle:    rgba(201, 162, 77, 0.12);
  --gold-border:    rgba(201, 162, 77, 0.3);

  --black:          #0F0F0F;
  --black-1:        #141414;
  --black-2:        #1A1A1A;
  --black-3:        #222222;
  --black-4:        #2C2C2C;

  --white:          #FFFFFF;
  --off-white:      #F5F2EE;
  --gray-light:     #D0D0D0;
  --gray:           #888888;
  --gray-dark:      #555555;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Raleway', sans-serif;

  --nav-height:     85px;
  --container-max:  1200px;
  --section-pad:    90px;

  --radius:         4px;
  --radius-lg:      12px;

  --transition:     all 0.35s ease;
  --transition-slow: all 0.6s ease;

  --shadow:         0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold:    0 8px 32px rgba(201, 162, 77, 0.2);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--gray-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

input, textarea, select, button {
  font-family: var(--font-body);
}

/* Keyboard focus — visible only for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--gray);
  font-weight: 400;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 77, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-subtle);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background: var(--black-3);
  color: var(--white);
  border: 1px solid var(--gold-border);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 1px;
}

.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.nav-book {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-tel {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
}

.nav-tel:hover {
  color: var(--gold);
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--black-1);
  border-left: 1px solid var(--gold-border);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,77,0.1);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-nav-footer {
  margin-top: auto;
}

.mobile-nav-footer p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.mobile-nav-footer a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  border: none;
  padding: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.2);
  transform-origin: center center;
}

.hero-static-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(201,162,77,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(201,162,77,0.06) 0%, transparent 55%),
    linear-gradient(160deg, #1a1505 0%, #0F0F0F 50%, #0a0e1a 100%);
  animation: heroPulse 10s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,15,15,0.6) 0%,
    rgba(15,15,15,0.25) 40%,
    rgba(15,15,15,0.25) 60%,
    rgba(15,15,15,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(201,162,77,0.4));
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(201,162,77,0.3)); }
  to   { filter: drop-shadow(0 0 45px rgba(201,162,77,0.6)); }
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 3px;
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 44px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TICKER / FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--black-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 18px 0;
  overflow: hidden;
}

.features-ticker-wrap {
  display: flex;
  animation: tickerScroll 30s linear infinite;
}

.features-ticker-wrap:hover {
  animation-play-state: paused;
}

.features-ticker {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  padding-right: 60px;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
}

.ticker-item i {
  color: var(--gold);
  font-size: 1rem;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 20px;
  align-self: center;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--black-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}

.about-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
}

.about-img-placeholder {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-img-placeholder img {
  width: 160px;
  height: 160px;
  opacity: 0.2;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 2;
  width: 110px;
  height: 110px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.about-badge .years-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.about-content .section-tag {
  display: block;
  text-align: left;
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gold-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   SPECIALITIES SECTION
   ============================================================ */
.specialities-section {
  background: var(--black);
}

.specialities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.speciality-card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.speciality-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.speciality-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.speciality-card:hover::before {
  transform: scaleX(1);
}

.speciality-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.speciality-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.speciality-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.speciality-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   INSTAGRAM / GALLERY SECTION
   ============================================================ */
.instagram-section {
  background: var(--black-1);
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: var(--transition);
}

.instagram-handle:hover {
  color: var(--gold-light);
}

.instagram-handle i {
  font-size: 1.1rem;
}

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

.ig-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--black-3);
}

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

.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: var(--transition);
}

.ig-post:hover img {
  transform: scale(1.08);
}

.ig-post:hover .ig-post-overlay {
  opacity: 1;
}

.ig-post-overlay span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.ig-post-overlay i {
  color: var(--gold);
}

.ig-placeholder {
  width: 100%;
  height: 100%;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}

.ig-placeholder i {
  font-size: 2rem;
  color: var(--gold-border);
}

.ig-placeholder span {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.instagram-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--black);
}

.reviews-swiper {
  padding-bottom: 50px !important;
}

.review-card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.reviewer-info h5 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray-light);
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewer-meta {
  font-size: 0.72rem;
  color: var(--gray);
}

.local-guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #1a73e8;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 50px;
  margin-left: 4px;
  vertical-align: middle;
}

.local-guide-badge i {
  font-size: 0.65rem;
}

.google-logo {
  font-size: 0.72rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-logo i {
  font-size: 0.9rem;
  color: #4285F4;
}

/* Swiper pagination gold */
.swiper-pagination-bullet {
  background: var(--gray-dark) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--black-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-1);
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.footer-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-logo-text .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--gray);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray);
}

.hours-row .day {
  color: var(--gray-light);
  font-weight: 500;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201,162,77,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

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

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  padding-top: var(--nav-height);
  height: 340px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black-1);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,77,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,162,77,0.05) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content .section-tag {
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1.05rem;
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--gray-dark);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: var(--gold);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-section {
  background: var(--black);
}

.services-tabs {
  display: flex;
  gap: 4px;
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 48px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold-gradient);
  color: var(--black);
}

.services-category {
  display: none;
}

.services-category.active {
  display: block;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.category-header p {
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.service-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gray);
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gray-dark);
}

.service-duration i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Specialities list on services page */
.specialities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: var(--transition);
}

.spec-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.spec-item:hover {
  border-color: var(--gold);
  color: var(--white);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section {
  background: var(--black);
}

.products-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-3);
}

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

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-info {
  padding: 20px;
}

.product-category-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.product-instore {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-instore i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Product modal */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  max-height: 90vh;
}

.product-modal-overlay.active .product-modal {
  transform: scale(1);
}

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.modal-body {
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--black-3);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.product-modal {
  position: relative;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-detail h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--gold);
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
}

.hours-item .day-name {
  color: var(--gray-light);
  font-weight: 500;
}

.hours-item .time {
  color: var(--gray);
}

/* Contact form */
.contact-form-wrap {
  background: var(--black-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.contact-form-wrap h3 {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--black-4);
  box-shadow: 0 0 0 3px rgba(201,162,77,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group select option {
  background: var(--black-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(201,162,77,0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-top: 16px;
}

.form-success i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-light);
}

/* Map */
.map-section {
  background: var(--black-1);
  padding: 0;
}

.map-wrap {
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1);
  border: none;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.6); }
}

/* ============================================================
   ANIMATIONS & AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
  }

  .nav-links, .nav-book {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .specialities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-modal {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-img {
    min-height: 240px;
    height: 240px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 70px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 13px 26px;
    font-size: 0.78rem;
  }

  .about-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .specialities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .speciality-card {
    padding: 22px 16px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .services-tabs {
    width: 100%;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .specialities-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .page-hero {
    height: auto;
    padding: calc(var(--nav-height) + 40px) 0 50px;
  }

  .products-filter {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .specialities-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 22px;
  }
}
