/* ------------------------------------------------------------------
 * SHYAM SARKAR STUDIO - PREMIUM LUXURY THEME
 * Stylesheet: Front-end UI (Glassmorphism & Full Image Display)
 * ------------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #07080a;
  --bg-card: rgba(18, 20, 29, 0.75);
  --bg-card-hover: rgba(28, 32, 46, 0.9);
  --accent-gold: #d4af37;
  --accent-gold-light: #f6e6ad;
  --accent-gold-dark: #b89320;
  --accent-gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-glass: rgba(212, 175, 55, 0.15);
  --border-glass-light: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.serif-font {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.text-gold { color: var(--accent-gold) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 5rem 0;
}

.section-title-wrapper, .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle, .section-badge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-main-title, .section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* --- BUTTONS --- */
.btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover, .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background: #040507;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-divider {
  color: var(--border-color);
}

.top-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-link:hover {
  color: var(--accent-gold);
}

.whatsapp-top {
  color: #25d366 !important;
  font-weight: 600;
}

/* --- HEADER & NAVIGATION --- */
.main-header, .header-sticky {
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.desktop-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: #fff;
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-head-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-head-call:hover {
  background: var(--accent-gold);
  color: #000;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- MOBILE DRAWER MENU --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #0d0f14;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0,0,0,0.8);
}

.mobile-drawer.active { right: 0; }

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu {
  list-style: none;
}

.mobile-menu li { margin-bottom: 1rem; }

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}

.drawer-overlay.active { display: block; }

/* ==================================================================
   --- HERO SECTION (FULL IMAGE DISPLAY & CENTERED OVERLAY FIX) ---
   ================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.hero-img-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image natural size scale fix (Zero cropping) */
.hero-full-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.hero-overlay-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.hero-content.text-center {
  text-align: center;
  max-width: 800px;
  padding: 1rem;
}

.center-actions {
  display: flex;
  justify-content: center !important;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* --- SERVICE CARDS & GLASS CARDS --- */
.service-card, .glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover, .glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* --- GALLERY GRID & FILTERS --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn, .filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active,
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-card, .gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border-color);
  background: #000;
  cursor: pointer;
}

.gallery-card img, .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card:hover img, .gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.4;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-card:hover .gallery-overlay,
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- FOOTER SECTION --- */
.site-footer {
  background: #030406;
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.btn-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: var(--transition-fast);
}

.btn-map-directions:hover {
  background: var(--accent-gold);
  color: #000;
}

.footer-bottom {
  background: #020203;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Floating Sticky Mobile Actions */
/* Sleek Luxury Floating Mobile Action Dock */
.sticky-action-bar {
  display: flex !important;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  background: rgba(15, 18, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 35px;
  padding: 6px;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15);
}

.sticky-action-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: 700;
  color: #fff;
  border: none !important;
  transition: all 0.3s ease;
  background: transparent;
}

.sticky-action-btn i {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Individual Premium Styling */
.sticky-action-btn.btn-call {
  background: rgba(255, 255, 255, 0.06);
  color: #f3e5ab;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.sticky-action-btn.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sticky-action-btn.btn-location {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (min-width: 769px) {
  .sticky-action-bar { display: none !important; }
}

/* Contact & Enquiry Form Improvements */
.contact-form-box .form-group {
  margin-bottom: 1.25rem;
}

.contact-form-box label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-form-box .form-control {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.75rem 1rem;
  background: rgba(10, 11, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}

.contact-form-box .form-control:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form-box select.form-control option {
  background: #0d0f14;
  color: #fff;
}

.contact-form-box textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-left span:last-child { display: none; }
  .hero-heading { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }
  .section-main-title { font-size: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-content { flex-direction: column; gap: 0.5rem; text-align: center; }
  .top-bar { display: none; }
  .sticky-action-bar { display: grid; }
  body { padding-bottom: 60px; }
  .hero-heading { font-size: 1.75rem; }
}

/* ==================================================================
   --- PREMIUM STORE INFO CARD STYLING ---
   ================================================================== */
.premium-store-card {
  background: rgba(18, 20, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
}

.store-card-header {
  margin-bottom: 1.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 0.5rem;
}

.store-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.info-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 12, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: all 0.3s ease;
}

.info-card-item:hover {
  background: rgba(20, 24, 33, 0.9);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.info-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.info-icon-box.wa-icon {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #828a9e;
  margin-bottom: 0.15rem;
}

.info-text {
  font-size: 0.9rem;
  color: #f1f5f9;
  font-weight: 500;
  line-height: 1.35;
}

.text-gold-light {
  color: #f3e5ab;
  font-weight: 600;
}

.info-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #ffffff;
}

.info-link.wa-link {
  color: #25d366;
}

.info-link.wa-link:hover {
  color: #ffffff;
}

.map-embed-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}