/*
Theme Name: Master Krish Cosmic
Theme URI: https://psychicastrokrish.com
Author: FSK Digital Marketing
Author URI: https://fskdigital.com
Description: Dark luxury cosmic theme for Master Krish Astrologer & Psychic Reader - New York
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: master-krish
Tags: dark, custom-colors, custom-menu, featured-images, full-width-template, translation-ready
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --bg: #0d0d0d;
  --bg-card: #141414;
  --fg: #f2f2f2;
  --fg-muted: #999;
  --border: #2e2e2e;
  --gold: #c9952a;
  --gold-light: #e5b84a;
  --gold-dark: #8a6218;
  --gold-gradient: linear-gradient(135deg, #c9952a, #e5b84a);
  --gold-text-gradient: linear-gradient(135deg, #e5b84a, #c9952a, #e5b84a);
  --radius: 0.5rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--fg);
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* ===========================
   UTILITY CLASSES
=========================== */
.text-gold { color: var(--gold); }
.text-gold-gradient {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gold-gradient { background: var(--gold-gradient); }
.bg-card { background: var(--bg-card); }
.border-gold { border-color: var(--gold); }
.shadow-gold { box-shadow: 0 0 30px -5px rgba(201,149,42,0.3); }
.divider-gold { height: 2px; background: var(--gold-gradient); opacity: 0.3; margin: 2rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold-gradient); color: #0d0d0d; }
.btn-gold:hover { opacity: 0.9; color: #0d0d0d; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(201,149,42,0.1); color: var(--gold); }
.btn-full { width: 100%; }

/* ===========================
   TOP BAR
=========================== */
#topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
#topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#topbar a { color: var(--gold); display: flex; align-items: center; gap: 0.4rem; }
#topbar a:hover { color: var(--gold-light); }
#topbar .topbar-hours { color: var(--fg-muted); }

/* ===========================
   NAVBAR
=========================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-logo:hover { opacity: 0.9; }

/* Desktop Nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#primary-nav .nav-link {
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
#primary-nav .nav-link:hover,
#primary-nav .nav-link.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > button {
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.has-dropdown > button:hover,
.has-dropdown.active > button { color: var(--gold); }
.has-dropdown > button .chevron {
  width: 12px; height: 12px;
  transition: transform 0.2s;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
  max-height: 70vh;
  overflow-y: auto;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--fg);
  font-size: 0.875rem;
  transition: all 0.15s;
}
.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(201,149,42,0.08);
}

.btn-contact-nav {
  background: var(--gold-gradient);
  color: #0d0d0d !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  -webkit-text-fill-color: #0d0d0d;
}
.btn-contact-nav:hover { opacity: 0.9; color: #0d0d0d !important; }

/* Mobile Hamburger */
#mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
#mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 2rem;
  max-height: calc(100vh - 105px);
  overflow-y: auto;
}
#mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-dropdown-toggle:hover { color: var(--gold); }
.mobile-submenu {
  display: none;
  padding-left: 1rem;
  max-height: 200px;
  overflow-y: auto;
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 0.4rem 0;
  color: var(--fg-muted);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(46,46,46,0.5);
}
.mobile-submenu a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  #primary-nav { display: none; }
  #mobile-toggle { display: block; }
}

/* ===========================
   CTA BAR
=========================== */
.cta-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cta-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  color: var(--fg);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.cta-bar-item:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.cta-bar-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.cta-bar-divider { width: 1px; height: 20px; background: var(--border); }

/* ===========================
   HERO SLIDER
=========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-top: -105px;
  padding-top: 105px;
}
.hero-slides-wrap {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero-slides-track {
  display: flex;
  height: 100%;
  animation: heroSlide 30s linear infinite;
}
.hero-slides-track:hover { animation-play-state: paused; }
.hero-slide {
  width: 600px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.62);
}
@keyframes heroSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 105px);
  padding: 2rem 1.5rem;
  text-align: center;
}
.hero-inner { max-width: 900px; width: 100%; }
.hero-badge {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  color: var(--fg-muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ===========================
   SECTIONS
=========================== */
.section { padding: 5rem 0; }
.section-dark { background: var(--bg); }
.section-card { background: var(--bg-card); }
.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--fg-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ===========================
   STATS GRID
=========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(201,149,42,0.3); }
.stat-icon { width: 32px; height: 32px; color: var(--gold); margin: 0 auto 0.75rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }

/* ===========================
   SERVICE CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201,149,42,0.4);
  box-shadow: 0 0 30px -5px rgba(201,149,42,0.25);
  transform: translateY(-3px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.service-card-desc {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.service-card-link {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 0.6rem; }

/* ===========================
   LOCATIONS SCROLL
=========================== */
.locations-scroll-wrap { overflow: hidden; position: relative; }
.locations-track {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  animation: locScroll 40s linear infinite;
}
.locations-track:hover { animation-play-state: paused; }
@keyframes locScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.location-chip {
  flex-shrink: 0;
  width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.2s;
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 500;
}
.location-chip:hover {
  border-color: rgba(201,149,42,0.5);
  box-shadow: 0 0 20px -5px rgba(201,149,42,0.25);
  color: var(--gold);
}
.location-chip svg { color: var(--gold); width: 18px; height: 18px; margin: 0 auto 0.5rem; display: block; }

/* ===========================
   FOOTER
=========================== */
#colophon {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-desc { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 0.5rem; }
.footer-stars svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col-toggle {
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.footer-col-toggle:hover { color: var(--gold); }
.footer-col-toggle svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.3s; }
.footer-col-toggle.open svg { transform: rotate(180deg); }
.footer-links { display: none; }
.footer-links.open { display: block; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--fg-muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-list svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: var(--fg-muted); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list span { color: var(--fg-muted); }
.footer-map-section { margin-top: 3rem; }
.footer-map-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.footer-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.footer-map-wrap iframe { display: block; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--fg-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   FLOATING WIDGETS
=========================== */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px -5px rgba(201,149,42,0.4);
  transition: transform 0.2s;
  animation: callPulse 1.5s ease-out infinite;
}
.floating-call:hover { transform: scale(1.1); }
.floating-call svg { width: 24px; height: 24px; color: #0d0d0d; }
.floating-maps {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: hsl(214,100%,50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.floating-maps:hover { transform: scale(1.1); }
.floating-maps svg { width: 28px; height: 28px; fill: white; }
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: hsl(142,70%,45%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 28px; height: 28px; fill: white; }
@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(201,149,42,0.6), 0 0 30px -5px rgba(201,149,42,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(201,149,42,0), 0 0 30px -5px rgba(201,149,42,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(201,149,42,0), 0 0 30px -5px rgba(201,149,42,0.4); }
}

/* ===========================
   PAGE TEMPLATES
=========================== */
/* Hero Banner (service/location pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}
.page-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.72);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 1.5rem 4rem;
}
.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.page-hero-back:hover { color: var(--gold-light); }
.page-hero-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  max-width: 800px;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.star-row { display: flex; gap: 2px; color: var(--gold); }
.star-row svg { width: 16px; height: 16px; }
.meta-text { color: var(--fg-muted); font-size: 0.875rem; }

/* Article + Sidebar layout */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .content-sidebar-wrap { grid-template-columns: 2fr 1fr; }
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--fg);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--fg);
}
.article-content h4 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--gold);
}
.article-content p {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.article-content ul {
  margin-bottom: 1rem;
  padding-left: 1rem;
  list-style: disc;
}
.article-content li {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.article-content strong { color: var(--fg); }
.article-content a { color: var(--gold); }
.article-content a:hover { color: var(--gold-light); }

/* Sidebar Card */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 7rem;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sidebar-links a {
  display: block;
  color: var(--fg-muted);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.sidebar-links a::before { content: '→ '; }
.sidebar-links a:hover { color: var(--gold); }

/* Tags row */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  transition: all 0.2s;
}
.tag-chip:hover { color: var(--gold); border-color: var(--gold); }

/* Explore box */
.explore-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.explore-box-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-card);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,149,42,0.04);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .cta-cards-row { grid-template-columns: repeat(3, 1fr); }
}
.cta-contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cta-contact-card:hover {
  border-color: rgba(201,149,42,0.5);
  box-shadow: 0 0 30px -5px rgba(201,149,42,0.25);
}
.cta-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-icon-wrap.gold { background: var(--gold-gradient); }
.cta-icon-wrap.green { background: hsl(142,70%,45%); }
.cta-icon-wrap svg { width: 24px; height: 24px; }
.cta-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}
.cta-contact-card:hover .cta-card-title { color: var(--gold); }
.cta-card-sub { font-size: 0.875rem; font-weight: 600; }
.cta-card-sub.gold { color: var(--gold); }
.cta-card-sub.green { color: hsl(142,70%,45%); }
.cta-card-note { font-size: 0.75rem; color: var(--fg-muted); }

/* Booking form */
.booking-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.booking-form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: var(--fg-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: none; }
select.form-control option { background: var(--bg-card); }

/* About Page */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; }
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); border: 1px solid var(--border); }
.about-badge {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: var(--gold-gradient);
  color: #0d0d0d;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}
.value-card:hover { border-color: rgba(201,149,42,0.3); }
.value-icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 1rem; }
.value-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.value-desc { color: var(--fg-muted); font-size: 0.875rem; }

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: rgba(201,149,42,0.4);
  transform: translateY(-3px);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-date { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; }

/* Contact Page */
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-value { color: var(--fg); font-weight: 500; }
.contact-info-value a { color: var(--fg); }
.contact-info-value a:hover { color: var(--gold); }

/* Location list page */
.locations-all-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .locations-all-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .locations-all-grid { grid-template-columns: repeat(4, 1fr); }
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--fg);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.location-card svg { width: 18px; height: 18px; color: var(--gold); }
.location-card:hover {
  border-color: rgba(201,149,42,0.5);
  color: var(--gold);
  box-shadow: 0 0 20px -5px rgba(201,149,42,0.25);
}

/* 404 */
.not-found-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found-code {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Layout spacer for fixed header */
.header-spacer { height: 105px; }

/* WordPress Core */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { margin: 0 auto; display: block; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Responsive tweaks */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-group .btn { font-size: 0.875rem; padding: 0.75rem 1.25rem; }
  .section { padding: 3.5rem 0; }
}

/* WP Content Styles */
.entry-content h1,.entry-content h2,.entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content p { color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.75; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { color: var(--fg-muted); line-height: 1.6; margin-bottom: 0.4rem; }

/* ===========================
   ICON SIZE FIXES (v1.1)
   Prevent SVGs from blowing up when no explicit size is set
=========================== */
.btn svg,
.cta-bar-item svg,
.hero-cta-group a svg,
.sidebar-card svg,
.floating-call svg,
.floating-maps svg,
.floating-wa svg,
.footer-contact-list svg,
.contact-info-list svg,
.page-hero-back svg,
.cta-contact-card svg,
.cta-icon-wrap svg {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Floating button icons — lock to container */
.floating-call svg { width: 24px !important; height: 24px !important; }
.floating-maps svg { width: 26px !important; height: 26px !important; }
.floating-wa svg   { width: 26px !important; height: 26px !important; }

/* Hero CTA buttons — icon + text inline, icon small */
.hero-cta-group .btn { display: flex; align-items: center; gap: .5rem; }
.hero-cta-group .btn svg { width: 20px !important; height: 20px !important; }

/* CTA bar icons */
.cta-bar-item svg { width: 16px !important; height: 16px !important; }

/* CTA contact cards */
.cta-icon-wrap svg { width: 24px !important; height: 24px !important; color: inherit; }
.cta-icon-wrap.gold svg { color: #0d0d0d; }
.cta-icon-wrap.green svg { color: #fff; }

/* Sidebar, footer icons */
.footer-contact-list svg,
.contact-info-list svg { width: 16px !important; height: 16px !important; margin-top: 2px; }

/* Star rows */
.star-row svg,
.footer-stars svg { width: 16px !important; height: 16px !important; }

/* Back link */
.page-hero-back svg { width: 16px !important; height: 16px !important; }

/* General SVG safety net — never let an SVG grow beyond its container */
svg { max-width: 100%; }

/* Fix WhatsApp SVG fill — needs currentColor to inherit from parent */
.floating-wa svg path,
.btn svg path { fill: currentColor; }
