/* Guitar Page Overrides - classic, warm palette */

/* ========================================
   GUITAR PAGE KEYFRAME ANIMATIONS
   ======================================== */

@keyframes guitar-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes guitar-float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes guitar-warm-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.3), 0 0 30px rgba(217, 119, 6, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(217, 119, 6, 0.4), 0 0 50px rgba(217, 119, 6, 0.2);
    transform: scale(1.01);
  }
}

@keyframes guitar-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes guitar-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes guitar-string-vibrate {
  0%, 100% { transform: scaleY(1); }
  25% { transform: scaleY(1.02); }
  50% { transform: scaleY(0.98); }
  75% { transform: scaleY(1.01); }
}

@keyframes guitar-note-float {
  0% {
    transform: translateY(0) rotate(-5deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) rotate(-5deg);
    opacity: 0.5;
  }
}

@keyframes guitar-sunray {
  0% { opacity: 0.3; transform: rotate(0deg); }
  50% { opacity: 0.5; transform: rotate(180deg); }
  100% { opacity: 0.3; transform: rotate(360deg); }
}

.page-pages-guitar .guitar-page {
  --eg-ink: #1f1a11;
  --eg-muted: #5b5144;
  --eg-accent: #d97706;
  --eg-accent-strong: #b45309;
  --eg-accent-alt: #fbbf24;
  --eg-surface: #fdf7e3;
  --eg-surface-soft: #f6e8c8;
  --eg-border: rgba(63, 50, 33, 0.18);
  --eg-border-strong: rgba(217, 119, 6, 0.35);
  --eg-shadow: 0 18px 40px rgba(63, 50, 33, 0.16);
  --eg-shadow-soft: 0 10px 26px rgba(63, 50, 33, 0.12);
  --eg-glow-accent: 0 14px 30px rgba(217, 119, 6, 0.3);
  --eg-glow-purple: 0 14px 30px rgba(251, 191, 36, 0.25);
  font-family: "Be Vietnam Pro", "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--eg-ink);
  background:
    radial-gradient(circle at 15% 18%, rgba(217, 119, 6, 0.16), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(251, 191, 36, 0.14), transparent 28%),
    linear-gradient(150deg, #fffaf0 0%, #f6e8c8 38%, #fef3c7 100%);
  position: relative;
  overflow-x: hidden;
}

/* Floating music notes for acoustic feel */
.page-pages-guitar .guitar-page::before,
.page-pages-guitar .guitar-page::after {
  content: '♪';
  position: fixed;
  font-size: 2.5rem;
  color: rgba(217, 119, 6, 0.12);
  pointer-events: none;
  z-index: 0;
  animation: guitar-note-float 8s ease-in-out infinite;
}

.page-pages-guitar .guitar-page::before {
  top: 25%;
  left: 4%;
  animation-delay: 0s;
}

.page-pages-guitar .guitar-page::after {
  content: '♫';
  top: 55%;
  right: 4%;
  animation-delay: 4s;
  color: rgba(251, 191, 36, 0.15);
}

/* Header - Warm Acoustic Theme */
.page-pages-guitar .site-header {
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
}

.page-pages-guitar .site-header__logo-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #1a1208;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.page-pages-guitar .site-header__logo {
  color: #fffaf0 !important;
}

.page-pages-guitar .site-header__tagline {
  color: rgba(255, 250, 240, 0.5);
}

/* Image-based Logo for Guitar Page */
.page-pages-guitar .site-header__image-logo .site-logo {
  height: 75px;
  filter: drop-shadow(0 4px 12px rgba(217, 119, 6, 0.35));
}

.page-pages-guitar .site-header__brand-link:hover .site-header__image-logo .site-logo {
  filter: drop-shadow(0 6px 16px rgba(217, 119, 6, 0.5));
}

@media (max-width: 768px) {
  .page-pages-guitar .site-header__image-logo .site-logo {
    height: 50px;
  }
}

.page-pages-guitar .site-header .nav-link {
  color: rgba(255, 250, 240, 0.7) !important;
}

.page-pages-guitar .site-header .nav-link::after {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.page-pages-guitar .site-header .nav-link:hover {
  color: #fffaf0 !important;
}

.page-pages-guitar .site-header .nav-link.active {
  color: #fbbf24 !important;
}

.page-pages-guitar .site-header .nav-link.active::after {
  background: #fbbf24;
}

.page-pages-guitar .navbar-toggler__icon span {
  background: rgba(255, 250, 240, 0.8);
}

.page-pages-guitar .navbar-toggler:hover .navbar-toggler__icon span {
  background: #fbbf24;
}

@media (max-width: 991px) {
  .page-pages-guitar .site-header .navbar-collapse {
    background: rgba(26, 18, 8, 0.98);
    border: 1px solid rgba(217, 119, 6, 0.2);
  }
}

/* Footer - Warm Acoustic Theme */
.page-pages-guitar .site-footer {
  background: linear-gradient(180deg, #1a1208 0%, #0f0a04 100%);
}

.page-pages-guitar .site-footer__glow--left {
  background: #d97706;
}

.page-pages-guitar .site-footer__glow--right {
  background: #fbbf24;
}

.page-pages-guitar .site-footer__logo-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #1a1208;
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.page-pages-guitar .site-footer__name {
  color: #fffaf0;
}

.page-pages-guitar .site-footer__desc {
  color: rgba(255, 250, 240, 0.5);
}

.page-pages-guitar .site-footer__link-title {
  color: rgba(255, 250, 240, 0.4);
}

.page-pages-guitar .site-footer__link {
  color: rgba(255, 250, 240, 0.7) !important;
}

.page-pages-guitar .site-footer__link::before {
  background: #fbbf24;
}

.page-pages-guitar .site-footer__link:hover {
  color: #fbbf24 !important;
}

.page-pages-guitar .site-footer__hotline-label {
  color: rgba(255, 250, 240, 0.4);
}

.page-pages-guitar .site-footer__hotline {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-pages-guitar .site-footer__content {
  border-bottom-color: rgba(217, 119, 6, 0.15);
}

.page-pages-guitar .site-footer__copyright {
  color: rgba(255, 250, 240, 0.4);
}

.page-pages-guitar .site-footer__tech {
  color: rgba(255, 250, 240, 0.25);
}

/* Buttons - warm acoustic feel */
.page-pages-guitar .guitar-page .btn-primary {
  background: linear-gradient(120deg, var(--eg-accent) 0%, var(--eg-accent-alt) 100%);
  color: #1a1208;
  border: none;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.28);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: guitar-warm-glow 4s ease-in-out infinite;
}

/* Warm shimmer effect */
.page-pages-guitar .guitar-page .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.page-pages-guitar .guitar-page .btn-primary:hover::before {
  left: 100%;
}

.page-pages-guitar .guitar-page .btn-primary:hover {
  background: linear-gradient(120deg, #f59e0b 0%, #fcd34d 100%);
  color: #1a1208;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 50px rgba(217, 119, 6, 0.4), 0 0 30px rgba(251, 191, 36, 0.2);
  animation: none;
}

.page-pages-guitar .guitar-page .btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Hero slider tweaks */
.page-pages-guitar .hero-slider {
  box-shadow: 0 24px 60px rgba(63, 50, 33, 0.18);
  border: 1px solid rgba(217, 119, 6, 0.25);
  background: #1f1308;
}

.page-pages-guitar .hero-slider__overlay {
  background: linear-gradient(
    180deg,
    rgba(251, 191, 36, 0.4) 0%,
    rgba(26, 18, 8, 0.65) 45%,
    rgba(26, 18, 8, 0.9) 100%
  );
}

.page-pages-guitar .hero-slider__content {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  color: #f8f5ed;
  text-align: left;
}

.page-pages-guitar .hero-slider__eyebrow {
  color: #fde68a;
  letter-spacing: 0.15em;
}

.page-pages-guitar .hero-slider__title {
  color: #fffaf0;
  text-shadow: 0 10px 30px rgba(217, 119, 6, 0.32);
}

.page-pages-guitar .hero-slider__description {
  color: #f1e8d0;
  max-width: 720px;
}

.page-pages-guitar .hero-slider__nav {
  background: rgba(255, 255, 255, 0.95);
  color: #1f1a11;
  border: 1px solid rgba(217, 119, 6, 0.35);
}

.page-pages-guitar .hero-slider__nav:hover {
  background: linear-gradient(120deg, #fff7e0, #fef3c7);
}

.page-pages-guitar .hero-slider__indicator {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(217, 119, 6, 0.35);
}

.page-pages-guitar .hero-slider__indicator.active {
  background: var(--eg-accent);
  border-color: var(--eg-accent-alt);
}

/* Shared typography */
.page-pages-guitar .eg-section-title {
  color: #1f1a11;
  letter-spacing: -0.01em;
}

.page-pages-guitar .eg-campus__eyebrow,
.page-pages-guitar .eg-value__kicker,
.page-pages-guitar .eg-the-change__pill {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: #b45309;
}

.page-pages-guitar .eg-campus__lede,
.page-pages-guitar .eg-value__lede,
.page-pages-guitar .eg-the-change__lede {
  color: var(--eg-muted);
}

/* Cards & panels - warm wooden feel */
.page-pages-guitar .eg-campus,
.page-pages-guitar .eg-value,
.page-pages-guitar .eg-the-change,
.page-pages-guitar .eg-photos,
.page-pages-guitar .eg-intro-video,
.page-pages-guitar .eg-videos,
.page-pages-guitar .eg-testimonials,
.page-pages-guitar .eg-faq,
.page-pages-guitar .eg-contact {
  background: radial-gradient(circle at 10% 20%, rgba(217, 119, 6, 0.08), transparent 32%), #fdf7e3;
  position: relative;
}

/* Warm section divider */
.page-pages-guitar .eg-campus::before,
.page-pages-guitar .eg-value::before,
.page-pages-guitar .eg-photos::before,
.page-pages-guitar .eg-intro-video::before,
.page-pages-guitar .eg-videos::before,
.page-pages-guitar .eg-testimonials::before,
.page-pages-guitar .eg-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f6e8c8' d='M0,25 C360,50 720,0 1080,25 C1260,37 1380,12 1440,25 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top;
  background-size: 100% 50px;
  pointer-events: none;
}

.page-pages-guitar .eg-campus__panel,
.page-pages-guitar .eg-value__panel,
.page-pages-guitar .eg-the-change__card,
.page-pages-guitar .eg-testimonial-card,
.page-pages-guitar .eg-faq-item {
  background: #fffaf0;
  border: 1px solid var(--eg-border);
  box-shadow: var(--eg-shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Warm top accent on cards */
.page-pages-guitar .eg-campus__panel::before,
.page-pages-guitar .eg-value__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eg-accent), var(--eg-accent-alt), var(--eg-accent));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-pages-guitar .eg-campus__panel:hover::before,
.page-pages-guitar .eg-value__panel:hover::before {
  opacity: 1;
  animation: guitar-gradient-shift 3s ease infinite;
}

.page-pages-guitar .eg-campus__panel:hover,
.page-pages-guitar .eg-value__panel:hover,
.page-pages-guitar .eg-the-change__card:hover {
  border-color: var(--eg-border-strong);
  box-shadow: var(--eg-shadow), 0 0 25px rgba(217, 119, 6, 0.1);
  transform: translateY(-6px);
}

.page-pages-guitar .eg-panel-kicker,
.page-pages-guitar .eg-course-badge,
.page-pages-guitar .eg-format-pill {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.page-pages-guitar .eg-location-row {
  background: #fffaf0;
  border-color: var(--eg-border);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Left accent bar animation */
.page-pages-guitar .eg-location-row::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--eg-accent), var(--eg-accent-alt));
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
  transform: translateY(-50%);
}

.page-pages-guitar .eg-location-row:hover::after {
  height: 70%;
}

.page-pages-guitar .eg-location-row:hover {
  background: #fef3c7;
  box-shadow: 0 18px 35px rgba(217, 119, 6, 0.22);
  transform: translateX(8px);
  border-color: rgba(217, 119, 6, 0.35);
}

.page-pages-guitar .eg-location-tag {
  background: rgba(217, 119, 6, 0.15);
  color: #92400e;
  border-color: rgba(217, 119, 6, 0.4);
}

.page-pages-guitar .eg-course-row {
  background: linear-gradient(135deg, #fffaf0 0%, #f6e8c8 100%);
  border: 1px solid var(--eg-border);
}

.page-pages-guitar .eg-course-row.eg-course-row--highlight {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(251, 191, 36, 0.12));
  border-color: rgba(217, 119, 6, 0.3);
}

.page-pages-guitar .eg-format-highlight {
  background: #fff7e0;
  border: 1px dashed rgba(217, 119, 6, 0.6);
  color: #92400e;
  max-width: 520px;
  margin-right: auto;
  align-self: start;
  justify-items: start;
}

.page-pages-guitar .guitar-121-stack {
  display: grid;
  gap: 1rem;
}

.page-pages-guitar .guitar-121-card {
  background: linear-gradient(145deg, #1b1218 0%, #0f0a12 100%);
  border: 1px solid rgba(63, 50, 33, 0.35);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 14px 30px rgba(63, 50, 33, 0.28);
  color: #f7ead3;
}

.page-pages-guitar .guitar-121-card__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.page-pages-guitar .guitar-121-card__meta h4 {
  margin: 0.35rem 0 0.2rem;
  color: #fffaf0;
  font-size: 1.35rem;
}

.page-pages-guitar .guitar-121-card__meta p {
  margin: 0;
  color: #d6c6ac;
  font-weight: 600;
}

.page-pages-guitar .guitar-121-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  background: rgba(217, 119, 6, 0.18);
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 999px;
  color: #fcd34d;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-pages-guitar .guitar-121-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: #f0e3cf;
}

.page-pages-guitar .guitar-121-points li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.5;
}

.page-pages-guitar .guitar-121-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .page-pages-guitar .guitar-121-card__grid {
    grid-template-columns: 1fr;
  }
}

/* Value and benefits */
.page-pages-guitar .eg-value__item {
  background: #2d2416;
  border-color: rgba(217, 119, 6, 0.25);
}

.page-pages-guitar .eg-value__item h3 {
  color: #fde68a;
}

.page-pages-guitar .eg-intro-video {
  padding: 80px 20px;
}

.page-pages-guitar .eg-intro-video .eg-video-item {
  max-width: 900px;
  margin: 0 auto;
}

.page-pages-guitar .eg-value__item p {
  color: #e2d7bd;
}

.page-pages-guitar .eg-value__panel--accent {
  background: linear-gradient(160deg, #fff7e0, #fef3c7);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.18);
}

.page-pages-guitar .eg-benefit-chip {
  background: #fffaf0;
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: none;
}

/* Teachers slider */
.page-pages-guitar .teacher-slider__nav {
  background: #fffaf0;
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: #1f1a11;
  box-shadow: 0 10px 30px rgba(63, 50, 33, 0.12);
  opacity: 1;
}

.page-pages-guitar .teacher-card,
.page-pages-guitar .teacher-card__content {
  background: #fffaf0;
  border-color: rgba(217, 119, 6, 0.2);
  color: #1f1a11;
}

.page-pages-guitar .teacher-card:hover {
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.2);
}

.page-pages-guitar .teacher-card__badge {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}

.page-pages-guitar .teacher-card__name {
  color: #1f1a11;
}

.page-pages-guitar .teacher-card__bio {
  color: #5b5144;
}

.page-pages-guitar .teacher-card__more {
  color: #b45309;
}

.page-pages-guitar .teacher-card__social-link:hover {
  background: var(--eg-accent);
  color: #fff;
}

/* The Change */
.page-pages-guitar .eg-the-change__card h3 {
  color: #1f1a11;
}

.page-pages-guitar .eg-the-change__card p {
  color: #5b5144;
}

.page-pages-guitar .eg-the-change__list li {
  color: #5b5144;
}

.page-pages-guitar .eg-the-change__list li::before {
  color: #d97706;
}

.page-pages-guitar .eg-the-change__list--numbered li::before {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.5);
  color: #b45309;
}

.page-pages-guitar .eg-the-change__list li strong {
  color: #b45309;
}

.page-pages-guitar .eg-the-change__card.eg-the-change__card--accent {
  background: linear-gradient(145deg, #fff7e0, #fef3c7);
  border: none;
}

.page-pages-guitar .eg-the-change__image-wrapper--main img {
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(217, 119, 6, 0.2);
}

/* Photos & videos - warm hover effects */
.page-pages-guitar .eg-photo-item,
.page-pages-guitar .eg-video-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(63, 50, 33, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.page-pages-guitar .eg-video-item {
  background: #fffaf0;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.page-pages-guitar .eg-video-item h3 {
  margin: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  color: #1f1a11;
  font-weight: 700;
  text-align: center;
}

/* 16:9 video aspect ratio (1920x1080) */
.page-pages-guitar .eg-video-wrapper {
  padding-bottom: 56.25%;
}

@supports (aspect-ratio: 16 / 9) {
  .page-pages-guitar .eg-video-wrapper {
    aspect-ratio: 16 / 9;
    padding-bottom: 0;
  }
}

/* Warm overlay on hover */
.page-pages-guitar .eg-photo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.2) 0%,
    rgba(251, 191, 36, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.page-pages-guitar .eg-photo-item:hover::before {
  opacity: 1;
}

.page-pages-guitar .eg-photo-item:hover,
.page-pages-guitar .eg-video-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 45px rgba(217, 119, 6, 0.25);
}

.page-pages-guitar .eg-photo-item img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.page-pages-guitar .eg-photo-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) saturate(1.15);
}

/* Testimonials - warm and inviting */
.page-pages-guitar .eg-testimonial-card {
  background: linear-gradient(135deg, #fffaf0, #f6e8c8);
  border-color: rgba(217, 119, 6, 0.25);
  color: #1f1a11;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Decorative quote mark */
.page-pages-guitar .eg-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(217, 119, 6, 0.1);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease, transform 0.4s ease;
}

.page-pages-guitar .eg-testimonial-card:hover::before {
  color: rgba(217, 119, 6, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.page-pages-guitar .eg-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.2);
  border-left-width: 6px;
  border-left-color: var(--eg-accent);
}

.page-pages-guitar .eg-testimonial-stars {
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* FAQ - warm interaction */
.page-pages-guitar .eg-faq-item {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Left accent that grows on hover */
.page-pages-guitar .eg-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--eg-accent), var(--eg-accent-alt));
  transition: height 0.4s ease;
  border-radius: 15px 0 0 15px;
}

.page-pages-guitar .eg-faq-item:hover::before {
  height: 100%;
}

.page-pages-guitar .eg-faq-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.18);
  border-color: rgba(217, 119, 6, 0.3);
}

.page-pages-guitar .eg-faq-question {
  color: #1f1a11;
  transition: color 0.3s ease;
}

.page-pages-guitar .eg-faq-item:hover .eg-faq-question {
  color: var(--eg-accent);
}

.page-pages-guitar .eg-faq-answer {
  color: #5b5144;
}

/* Benefit chips warm hover */
.page-pages-guitar .eg-benefit-chip {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-pages-guitar .eg-benefit-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.18);
  border-color: rgba(217, 119, 6, 0.5);
  border-style: solid;
}

/* Value items warm hover */
.page-pages-guitar .eg-value__item {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-pages-guitar .eg-value__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.15);
}

/* Modal */
.page-pages-guitar .eg-modal {
  background: #fffaf0;
  color: #1f1a11;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 20px 70px rgba(45, 36, 22, 0.3);
}

.page-pages-guitar .eg-modal__header {
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  background: linear-gradient(135deg, #fff7e0, #fef3c7);
}

.page-pages-guitar .eg-modal__eyebrow {
  color: #b45309;
}

.page-pages-guitar .eg-modal .modal-title {
  color: #1f1a11;
}

.page-pages-guitar .eg-modal .btn-close {
  filter: none;
}

.page-pages-guitar .eg-modal .modal-body {
  background: #fffaf0;
}

.page-pages-guitar .eg-tally-embed {
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
}

/* Contact */
.page-pages-guitar .eg-contact {
  background: linear-gradient(180deg, #fff7e0 0%, #fef3c7 100%);
  border-top: 1px solid rgba(217, 119, 6, 0.18);
}

.page-pages-guitar .eg-contact .eg-section-title {
  color: #1f1a11;
}

.page-pages-guitar .eg-contact-subtitle {
  color: #5b5144;
}

/* Testimonial Slider */
.page-pages-guitar .testimonial-slider {
  position: relative;
  padding: 0 60px;
  margin-top: 3rem;
}

.page-pages-guitar .testimonial-slider__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.page-pages-guitar .testimonial-slider__track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.page-pages-guitar .testimonial-slider .eg-testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 320px;
  scroll-snap-align: start;
}

.page-pages-guitar .testimonial-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  background: #fffaf0;
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: #1f1a11;
  box-shadow: 0 10px 30px rgba(63, 50, 33, 0.12);
}

.page-pages-guitar .testimonial-slider__nav:hover {
  background: linear-gradient(120deg, #d97706, #fbbf24);
  color: #fff;
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.page-pages-guitar .testimonial-slider__nav--prev {
  left: 0;
}

.page-pages-guitar .testimonial-slider__nav--next {
  right: 0;
}

@media (max-width: 1024px) {
  .page-pages-guitar .testimonial-slider .eg-testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .page-pages-guitar .testimonial-slider {
    padding: 0 50px;
  }

  .page-pages-guitar .testimonial-slider .eg-testimonial-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: 280px;
  }

  .page-pages-guitar .testimonial-slider__nav {
    width: 40px;
    height: 40px;
  }
}
