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

:root {
  /* Color Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --accent-gold: #ff7f00;              /* Brand Orange */
  --accent-gold-hover: #ff2a6d;        /* Brand Pink/Magenta */
  --accent-glow: rgba(255, 127, 0, 0.08);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-gold: rgba(255, 127, 0, 0.25);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold {
  color: var(--accent-gold-hover);
}

.glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(255, 42, 109, 0.3);
  position: relative;
  overflow: hidden;
}

.glow-btn:hover {
  background: linear-gradient(135deg, #ff9f00 0%, #e21b5a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 42, 109, 0.45);
}

.glow-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: 0.8s;
  opacity: 0;
}

.glow-btn:hover::after {
  opacity: 1;
  left: 120%;
  top: 120%;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.secondary-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* Ambient glow backgrounds */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(7, 9, 14, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

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

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

/* Dropdown menu styling */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  vertical-align: middle;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 260px;
  list-style: none;
  display: none;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08), 
              0 0 15px rgba(255, 127, 0, 0.05);
  z-index: 1000;
  margin-top: 10px;
}

/* Bridge the hover gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block !important;
  padding: 12px 20px !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  transition: var(--transition-smooth) !important;
  border-bottom: none !important;
  text-align: left !important;
}

.dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.08) !important;
  color: var(--accent-gold) !important;
  padding-left: 25px !important;
}

.dropdown-menu li a::after {
  display: none !important;
}

/* Hover for desktop */
@media (min-width: 1025px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
    animation: fadeInDropdown 0.25s ease-out forwards;
  }
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Open state for mobile toggle */
@media (max-width: 1024px) {
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 15px;
    min-width: auto;
    width: 100%;
    margin-top: 5px;
  }
  
  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

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

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.1) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  z-index: 1;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s infinite ease-in-out;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-title span {
  display: inline;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 850px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 
              0 0 40px rgba(255, 127, 0, 0.05);
  border: 1px solid var(--border-color);
  aspect-ratio: 4/5;
  background-color: var(--bg-secondary);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.08);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
  bottom: 30px;
  left: -20px;
}

.floating-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.floating-info p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Sections Base */
section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Features/Benefits Section */
.features {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06), 
              0 0 25px rgba(255, 127, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(212, 175, 55, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

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

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Methodology Section */
.methodology {
  background: var(--bg-secondary);
}

.methodology-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.methodology-step {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.5;
  line-height: 1;
  transition: var(--transition-smooth);
}

.methodology-step:hover .step-num {
  opacity: 1;
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.cta-card {
  position: relative;
  background: radial-gradient(circle at 100% 0%, rgba(255, 127, 0, 0.08) 0%, transparent 60%),
              rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.cta-card h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Info Section (Location & Details) */
.info-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.info-text p, .info-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.info-text a:hover {
  color: var(--accent-gold);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  height: 100%;
  min-height: 350px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* Footer */
footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Reveal scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-image-container {
    margin-top: 2rem;
  }
  .methodology-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Mobile Hamburger & Lateral Sidebar Menu */
  .menu-toggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    box-shadow: -5px 0 30px rgba(15, 23, 42, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  nav.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }
  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    color: var(--text-primary) !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .cta-card {
    padding: 3.5rem 1.5rem;
  }
  .cta-card h2 {
    font-size: 2.2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Gallery/Carousel Section */
.gallery-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.3) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Music Controller Button */
.music-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08), 
              0 0 15px rgba(255, 127, 0, 0.05);
  transition: var(--transition-smooth);
}

.music-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.music-waves {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.music-waves span {
  display: block;
  width: 2px;
  height: 100%;
  background-color: currentColor;
  border-radius: 2px;
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.music-waves span:nth-child(2) { animation-delay: 0.2s; }
.music-waves span:nth-child(3) { animation-delay: 0.4s; }

.music-toggle-btn.playing .music-icon {
  opacity: 0;
}

.music-toggle-btn.playing .music-waves {
  opacity: 1;
}

@keyframes bounce {
  0% { height: 3px; }
  100% { height: 14px; }
}

@media (max-width: 768px) {
  .music-toggle-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Interactive Keyboard Styling */
.piano-keyboard {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.piano-key {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #e2e8f0 100%);
  width: 55px;
  height: 180px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 
              0 2px 2px rgba(255, 255, 255, 0.6) inset;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  transition: all 0.15s ease;
  user-select: none;
}

.piano-key span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
}

.piano-key:hover {
  background: linear-gradient(to bottom, #ffffff 0%, #cbd5e1 100%);
  transform: translateY(2px);
}

.piano-key.active {
  background: linear-gradient(to bottom, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  box-shadow: 0 0 15px var(--accent-glow), 
              0 2px 2px rgba(255, 255, 255, 0.2) inset;
  transform: translateY(4px);
}

.piano-key.active span {
  color: var(--bg-primary);
}

.instrument-tabs .secondary-btn.active {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

/* Testimonial Slide Transition */
.testimonial-slide {
  animation: fadeInSlide 0.5s ease-in-out forwards;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Section */
.video-section {
  padding: 80px 0;
  position: relative;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  background-color: #000;
  transition: var(--transition-smooth);
}

.video-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Google Reviews Widget */
.google-widget-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.google-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #f8985a; /* Orange background like startup musical logo in the picture */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(248, 152, 90, 0.2);
}

.brand-meta h4 {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.rating-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.reviews-total {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 25px;
}

.google-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.google-write-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}
.google-reviews-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.google-reviews-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeInSlide 0.5s ease-in-out forwards;
}

.google-reviews-slide.active {
  display: grid;
}

.google-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  transition: var(--transition-smooth);
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(255, 127, 0, 0.08);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.avatar-silvana { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.avatar-edigomes { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.avatar-ariane { background: linear-gradient(135deg, #0d9488, #0f766e); }

.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

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

.review-stars-row .stars {
  font-size: 0.8rem;
}

.verified-icon {
  color: #1d9bf0; /* Blue verified check icon */
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.google-logo-wrapper {
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.review-more-link {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.review-more-link:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .google-widget-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .google-brand-card {
    width: 100% !important;
    padding: 30px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .brand-logo {
    margin-bottom: 15px !important;
  }
  
  .google-reviews-slide.active {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .google-reviews-slide.active {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .google-review-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Editorial / Premium Blog Styles */

.editorial-body {
  background-color: var(--bg-primary);
}

.article-body {
  background-color: #fff;
}

/* Reading Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1000;
}
.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Transparent Header */
.header-transparent {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 100;
}
.header-transparent .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}
.header-transparent .nav-links a:hover {
  color: #fff;
}

/* Editorial Hero (Listing) */
.editorial-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-primary);
}
.featured-post-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-end;
  min-height: 500px;
}
.featured-image-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.featured-image-wrapper img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
}
.featured-post-card:hover .featured-image-wrapper img {
  transform: scale(1.03);
}
.featured-content {
  position: relative;
  z-index: 2;
  padding: 4rem;
  color: #fff;
  max-width: 800px;
}
.featured-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.featured-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.featured-title a {
  color: #fff;
  text-decoration: none;
}
.featured-title a:hover {
  text-decoration: underline;
}
.featured-excerpt {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--accent-gold-hover);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}
.read-time {
  opacity: 0.7;
}

/* Editorial Layout */
.editorial-main {
  padding: 4rem 0 8rem;
}
.editorial-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .editorial-layout {
    grid-template-columns: 1fr;
  }
}

.section-heading {
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
}
.heading-line {
  height: 2px;
  width: 60px;
  background: var(--accent-gold);
  margin-top: 10px;
}

/* Grid & Cards */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.editorial-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-large {
  grid-column: span 2;
}
.card-image-link {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.card-image-link img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-large .card-image-link img {
  height: 400px;
}
.card-image-link:hover img {
  transform: scale(1.05);
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.3;
}
.card-large .card-title {
  font-size: 2rem;
}
.card-title a {
  color: var(--text-primary);
  text-decoration: none;
}
.card-title a:hover {
  color: var(--accent-gold);
}
.card-excerpt {
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.text-gold { color: var(--accent-gold); }
.text-blue { color: #3b82f6; }
.text-purple { color: #8b5cf6; }

.load-more-container {
  margin-top: 4rem;
  text-align: center;
}
.btn-load-more {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Sidebar */
.editorial-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 20px;
}
.widget-newsletter {
  background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(15, 23, 42, 1));
  color: #fff;
  text-align: center;
}
.widget-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.widget-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 2rem;
}
.btn-full {
  width: 100%;
}
.widget-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.category-list {
  list-style: none;
}
.category-list li {
  margin-bottom: 1rem;
}
.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.category-list a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}
.category-list span {
  background: rgba(15, 23, 42, 0.05);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.tag-cloud a {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.tag-cloud a:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* Article Page specific */
.article-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}
.article-category {
  display: block;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.article-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.article-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 3rem;
}
.article-meta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.meta-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.meta-details .author-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.meta-details .publish-date {
  font-size: 0.9rem;
  opacity: 0.7;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

.article-main {
  background: #fff;
  padding: 4rem 0;
}
.article-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-body-text {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.8;
}
.dropcap::first-letter {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  float: left;
  line-height: 1;
  padding-right: 0.8rem;
  padding-top: 0.3rem;
  color: var(--accent-gold);
}
.article-body-text p {
  margin-bottom: 2rem;
}
.article-body-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 4rem 0 1.5rem;
  color: var(--text-primary);
}
.article-body-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
}
.premium-quote {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);
  margin: 5rem 0;
  position: relative;
}
.premium-quote::before {
  content: '“';
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
.premium-quote cite {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: normal;
}
.article-inline-image {
  margin: 4rem -4rem;
}
@media (max-width: 800px) {
  .article-inline-image { margin: 3rem 0; }
  .article-title { font-size: 2.5rem; }
  .featured-content { padding: 2rem; }
}
.article-inline-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.article-inline-image figcaption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.article-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tags-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.tags-row span {
  font-weight: 600;
  color: var(--text-primary);
}
.tags-row a {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}
.tags-row a:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}
.share-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.share-box strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
}
.share-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-share {
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s;
}
.btn-share.facebook { background: #1877F2; }
.btn-share.whatsapp { background: #25D366; }
.btn-share.twitter { background: #000000; color: #ffffff !important; }
.btn-share.twitter i,
.btn-share.twitter svg { color: #ffffff !important; fill: #ffffff !important; }
.btn-share.linkedin { background: #0077B5; }
.btn-share:hover { transform: scale(1.1); }

.next-article-teaser {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
}
.teaser-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.teaser-label {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.teaser-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.teaser-content a:not(.glow-btn) {
  color: #fff;
  text-decoration: none;
}

/* Premium Article Features */

/* 1. Reading Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
}
.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
  transition: width 0.1s ease-out;
  border-radius: 0 2px 2px 0;
}

/* 2. Audio Player UI */
.audio-player-ui {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  width: max-content;
  max-width: 100%;
}
.audio-btn {
  background: var(--accent-gold-hover);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-gold-hover);
}
.audio-info {
  display: flex;
  flex-direction: column;
}
.audio-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.audio-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}
.audio-wave span {
  display: block;
  width: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
  height: 20%;
  animation: audioWave 1.2s infinite ease-in-out alternate;
  animation-play-state: paused;
}
.audio-wave.playing span {
  animation-play-state: running;
}
.audio-wave span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.audio-wave span:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.audio-wave span:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.audio-wave span:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.audio-wave span:nth-child(5) { height: 50%; animation-delay: 0.5s; }

@keyframes audioWave {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1.2); }
}

/* 3. Sticky Share */
.article-content-wrapper {
  position: relative;
}
.sticky-share-sidebar {
  position: absolute;
  left: -80px;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 120px;
  height: max-content;
  z-index: 10;
}
.sticky-share-sidebar .btn-share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-color);
}
.sticky-share-sidebar .btn-share:hover {
  transform: translateX(-5px);
}
.sticky-share-sidebar .btn-share.facebook { color: #1877F2; }
.sticky-share-sidebar .btn-share.whatsapp { color: #25D366; }
.sticky-share-sidebar .btn-share.twitter { color: #000000; }
.sticky-share-sidebar .btn-share.linkedin { color: #0A66C2; }

.sticky-share-sidebar .btn-share.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.sticky-share-sidebar .btn-share.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
.sticky-share-sidebar .btn-share.twitter:hover { background: #000000; color: white; border-color: #333; }
.sticky-share-sidebar .btn-share.linkedin:hover { background: #0A66C2; color: white; border-color: #0A66C2; }

@media (max-width: 1024px) {
  .sticky-share-sidebar {
    display: none; /* Hide on mobile/tablet, rely on bottom share */
  }
}

/* 4. Parallax Image Container */
.parallax-img-container {
  overflow: hidden;
  border-radius: 12px;
  margin: 3rem 0;
  position: relative;
}
.parallax-img-container img {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  will-change: transform;
}
