/* ==========================================================================
   PIANO MOVERS TORONTO - PREMIUM DESIGN SYSTEM & CORE STYLESHEET
   ========================================================================== */

/* Design Tokens & CSS Custom Variables */
:root {
  --bg-primary: #FCFCFD;          /* Clean luxury warm alabaster white */
  --bg-secondary: #FFFFFF;        /* Crisp pure white for cards/menus */
  --bg-tertiary: #F3F4F6;         /* Light grey slate for borders/accents */
  --brand-burgundy: #721C24;      /* Deep rich royal felt burgundy */
  --brand-burgundy-light: #9E2A37;
  --brand-burgundy-glow: rgba(114, 28, 36, 0.04);
  --accent-gold: #9A7B1C;         /* Rich polished gold - high readability on light */
  --accent-gold-light: #B58E2F;
  --accent-gold-glow: rgba(154, 123, 28, 0.05);
  --text-light: #1A1D20;          /* Deep slate charcoal for primary reading */
  --text-muted: #5F646C;          /* Warm silver-gray for subtext */
  --text-dark: #FFFFFF;           /* White for contrast dark sections/badges/buttons */
  --card-bg: #FFFFFF;
  --card-border: rgba(154, 123, 28, 0.16);
  --card-border-glow: rgba(114, 28, 36, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --shadow-premium: 0 10px 30px rgba(10, 10, 12, 0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset & Base Elements */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* Precise offset to prevent sticky header overlap */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

p {
  color: var(--text-muted);
}

ul {
  list-style: none;
}

/* SVG Helpers */
svg {
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* Premium Gradient Text */
.gradient-gold-text {
  background: linear-gradient(135deg, #FFF3A7 0%, #D4AF37 50%, #8A640F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Main Interactive Button Library */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-dark) !important;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(154, 123, 28, 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  color: var(--text-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(154, 123, 28, 0.25);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-3px);
}

/* Sticky Navigation Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-premium);
  background-color: var(--bg-primary);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
}

.logo-area .accent-text {
  color: var(--accent-gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links .cta-nav-btn {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-links .cta-nav-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* Responsive spacing for medium laptop screens (Prevents header menu wrapping) */
@media (min-width: 993px) and (max-width: 1250px) {
  .logo-area {
    font-size: 1.25rem !important;
  }
  .nav-links {
    gap: 8px !important;
  }
  .nav-links a {
    font-size: 0.78rem !important;
  }
  .nav-links .cta-nav-btn {
    padding: 5px 10px !important;
  }
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Majestic Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  background-color: var(--bg-primary);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.60) 25%, rgba(255, 255, 255, 0.0) 70%), url('assets/piano_moving_premium.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.1) 0%, var(--bg-primary) 85%);
  pointer-events: none;
}

.hero-content-container {
  max-width: 950px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(88, 24, 31, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold-light);
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gold-badge-icon {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
  animation: pulseGold 2s infinite ease-in-out;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 36px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.phone-svg-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Hero Trust Ribbon */
.hero-trust-ribbon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ribbon-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.ribbon-item span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-light);
}

/* Global Section Containers */
section {
  padding: 100px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Premium Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--accent-gold));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-glow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background-color: var(--brand-burgundy-glow);
  border: 1px solid rgba(88, 24, 31, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-bg {
  background-color: var(--brand-burgundy);
  color: var(--text-light);
  transform: rotate(-10deg);
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HomeStars Layout Section */
.homestars-section {
  background-color: var(--bg-secondary);
  background-image: radial-gradient(ellipse at right bottom, rgba(88, 24, 31, 0.1) 0%, transparent 60%);
}

.homestars-flex-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.homestars-badge-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.homestars-emblem {
  background-color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.homestars-emblem::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.homestars-year-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.homestars-medal-wrapper {
  margin-bottom: 16px;
}

.gold-medal-svg {
  width: 80px;
  height: 80px;
}

.emblem-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.emblem-p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.text-left {
  text-align: left;
  margin-left: 0;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.trust-list li span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Live IFrame Browser Frame Mockup Styling */
.homestars-widget-frame-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.widget-header-tab {
  background-color: #16161D;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-header-tab .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.widget-header-tab .dot.red { background-color: #FF5F56; }
.widget-header-tab .dot.yellow { background-color: #FFBD2E; }
.widget-header-tab .dot.green { background-color: #27C93F; }

.widget-header-tab .widget-title {
  margin-left: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.iframe-container {
  background-color: #FFFFFF; /* High contrast background needed for homestars widget */
  height: 450px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Premium Interactive Educational Knowledge Hub */
.education-hub {
  background-image: radial-gradient(circle at 10% 80%, rgba(88, 24, 31, 0.08) 0%, transparent 60%);
}

.tab-widget-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.tab-buttons-bar {
  display: flex;
  background-color: #121216;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow-x: auto;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 24px 20px;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  position: relative;
  outline: none;
  min-width: 160px;
}

.tab-btn:hover {
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  color: var(--accent-gold);
  background-color: var(--bg-secondary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
}

.tab-btn .tab-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-right: 6px;
  display: inline-block;
  vertical-align: top;
}

.tab-content-wrapper {
  padding: 50px 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.panel-copy h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--accent-gold-light);
}

.panel-copy > p {
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 900px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.check-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 8px;
}

.check-item .item-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.check-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.panel-highlight-note {
  border-left: 4px solid var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
  padding: 16px 24px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

/* Custom Styled Defects Table */
.defects-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: left;
}

.defects-table th, .defects-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.defects-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  background-color: rgba(0, 0, 0, 0.2);
}

.defects-table td {
  font-size: 0.92rem;
}

.defects-table .defect-name {
  font-weight: 700;
  color: var(--text-light);
}

.impact-level {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.impact-level.critical {
  background-color: rgba(220, 53, 69, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.impact-level.moderate {
  background-color: rgba(255, 193, 7, 0.1);
  color: #FFD43B;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Care Grid rules */
.care-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.rule-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.rule-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background-color: rgba(255, 255, 255, 0.04);
}

.rule-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
}

.rule-card p {
  font-size: 0.88rem;
}

/* Tuning Details block */
.tuning-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.detail-block h5 {
  font-size: 1.3rem;
  color: var(--accent-gold-light);
  margin-bottom: 14px;
}

.detail-block p {
  font-size: 0.95rem;
}

/* Myth elements styling */
.myth-item {
  display: flex;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.myth-badge {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background-color: var(--brand-burgundy);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.myth-content h5 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.myth-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Google Business Reviews Slider */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.testimonials-slider-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
}

.service-tag {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
}

.google-badge-small {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.google-letter-g {
  color: #4285F4;
  font-weight: 900;
}

.rating-stars {
  color: #FABB05;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-light);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.nav-arrow {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.nav-arrow:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot-btn.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
}

.view-all-google-wrapper {
  text-align: center;
  margin-top: 40px;
}

.google-maps-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.google-maps-link-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.map-icon {
  width: 18px;
  height: 18px;
}

/* FAQ Accordion Section */
.faq-list-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  outline: none;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  fill: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  fill: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 30px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Google Form Quote & GTA Map Integration */
.quote-form-section {
  background-image: radial-gradient(circle at 90% 10%, rgba(88, 24, 31, 0.12) 0%, transparent 60%);
}

.quote-container-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
  align-items: flex-start;
}

.quote-info-panel h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent-gold-light);
}

.quote-info-panel > p {
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.quote-bullets {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.bullet-row {
  display: flex;
  gap: 16px;
}

.bullet-svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-row strong {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.bullet-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-box-accent {
  background-color: var(--brand-burgundy-glow);
  border: 1px solid rgba(88, 24, 31, 0.3);
  padding: 24px;
  border-radius: 8px;
}

.accent-call-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.accent-phone-link {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.accent-phone-link:hover {
  color: var(--accent-gold);
}

.accent-email {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.accent-email a {
  color: var(--text-light);
  font-weight: 600;
}

.google-form-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.google-form-iframe-wrapper {
  width: 100%;
  height: 850px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #F8F9FA; /* Google forms default light bg */
}

/* Premium Footer */
.site-footer {
  background-color: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-col .logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.footer-brand-col .logo-text .accent-text {
  color: var(--accent-gold);
  font-weight: 300;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.coverage-badges {
  display: flex;
  gap: 12px;
}

.coverage-badges .badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.footer-links-col h4, .footer-service-area-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-col ul a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-service-area-col p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.cities-grid span, .cities-grid a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.cities-grid a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text, .seo-footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.seo-footer-disclaimer {
  font-style: italic;
}

/* Keyframes Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGold {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)); }
}

/* Responsive Media Queries (Tablets & Mobiles) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .homestars-flex-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .homestars-badge-area {
    align-items: center;
    text-align: center;
  }
  .trust-list {
    align-items: center;
  }
  .quote-container-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-info-panel {
    order: 2; /* Render below the form on mobile */
  }
  .google-form-card {
    order: 1; /* Render on top of the text details on mobile */
  }
  .tuning-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 16px !important; /* Highly compact padding for mobile viewports */
  }
  .logo-area {
    font-size: 1.05rem !important; /* Ultra-compact font size to guarantee single line */
    white-space: nowrap !important; /* Prevent brand text from wrapping under any circumstance */
  }
  section {
    padding: 60px 16px;
  }
  .hero-section {
    padding-top: 140px; /* Increased padding to prevent header and hamburger overlap on mobile */
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero-trust-ribbon {
    gap: 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  
  /* Mobile Navigation toggle overlay */
  .mobile-nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--card-border);
    padding: 100px 30px 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  /* hamburger morph to cross */
  .mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
  }
  .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .tab-buttons-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .tab-content-wrapper {
    padding: 30px 20px;
  }
  
  .panel-copy h3 {
    font-size: 1.4rem;
  }
  
  .defects-table th, .defects-table td {
    padding: 12px 10px;
    font-size: 0.82rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   DROPDOWN MENU NAVIGATION & TRUST ALERT SYSTEMS (PREMIUM UPGRADE)
   ========================================================================== */

/* Dropdown Container */
.dropdown {
  position: relative;
}

.dropdown-toggle-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

/* Dropdown Menu (Desktop) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 260px;
  background-color: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  color: var(--accent-gold-light);
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 24px;
}

/* Mobile Dropdown Styling */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: none;
    box-shadow: none;
    padding: 0 0 0 15px;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none; /* Controlled by JS */
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Premium Legal/Insurance Alert Box */
.legal-warning-box {
  background-color: rgba(88, 24, 31, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--accent-gold);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.legal-warning-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.warning-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.warning-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.warning-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent-gold-light);
  text-transform: uppercase;
}

.warning-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light) !important;
}

.warning-text strong {
  color: var(--accent-gold-light);
}

.warning-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.warning-text a:hover {
  color: var(--accent-gold-light);
}

/* Custom Grid for sub-services list on service page */
.specialized-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-panel {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.feature-panel:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-glow);
}

.feature-panel h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--accent-gold-light);
}

.feature-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GOOGLE REVIEWS PREMIUM WIDGET INTEGRATION
   ========================================================================== */

.google-reviews-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 40px;
}

.widget-summary-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-tertiary);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.widget-rating-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.widget-rating-stars {
  color: #FABB05;
  font-size: 1.2rem;
}

.widget-rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.verified-badge-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a73e8;
  background-color: rgba(26, 115, 232, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
}

.write-review-btn {
  background-color: #1a73e8;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.write-review-btn:hover {
  background-color: #1557b0;
  transform: translateY(-2px);
}

.reviews-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.google-review-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-smooth);
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-glow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.user-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.user-display-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}

.guide-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  background-color: var(--accent-gold-glow);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-g-logo {
  position: absolute;
  top: 0;
  right: 0;
}

.review-rating-stars {
  color: #FABB05;
  font-size: 0.95rem;
}

.review-body-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.review-service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  background-color: var(--brand-burgundy-glow);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  text-transform: uppercase;
}

/* ==========================================================================
   LIGHT MODE DESIGN ADJUSTMENTS
   ========================================================================== */

/* Checklist Items */
.check-item {
  background-color: rgba(0, 0, 0, 0.015) !important;
  border: 1px solid rgba(0, 0, 0, 0.035) !important;
}

/* Myth Items */
.myth-item {
  background-color: rgba(0, 0, 0, 0.015) !important;
  border: 1px solid rgba(0, 0, 0, 0.035) !important;
}

/* Tab button container */
.tab-buttons-bar {
  background-color: var(--bg-tertiary) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.tab-btn:hover {
  background-color: rgba(0, 0, 0, 0.01) !important;
}

.tab-btn.active {
  background-color: var(--bg-secondary) !important;
}

/* Defects table th */
.defects-table th {
  background-color: rgba(0, 0, 0, 0.02) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Accordion hover */
.rule-card {
  background-color: rgba(0, 0, 0, 0.01) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.rule-card:hover {
  background-color: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(114, 28, 36, 0.15) !important;
}

/* Warning alert box */
.legal-warning-box {
  background-color: rgba(212, 175, 55, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-left: 4px solid var(--accent-gold) !important;
}

/* Accent contact box */
.contact-box-accent {
  background-color: rgba(114, 28, 36, 0.03) !important;
  border: 1px solid rgba(114, 28, 36, 0.1) !important;
}

/* Nav links colors */
.nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--brand-burgundy);
}

.nav-links .cta-nav-btn {
  border-color: var(--brand-burgundy);
  color: var(--brand-burgundy);
}

.nav-links .cta-nav-btn:hover {
  background-color: var(--brand-burgundy);
  color: var(--bg-secondary);
}

/* Mobile Nav Menu Background */
.nav-menu {
  background-color: var(--bg-primary) !important;
  border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Footer grounding */
.site-footer {
  background-color: #0d131f !important; /* Rich premium dark navy for grounding */
}

.site-footer p, .site-footer span, .site-footer a {
  color: #a0aec0 !important;
}

.site-footer a:hover {
  color: var(--accent-gold-light) !important;
}

.site-footer h4 {
  color: var(--text-dark) !important;
}

/* ==========================================================================
   MASTER CONCERT TUNER CREDENTIALS
   ========================================================================== */
.tuner-credentials-box {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(154, 123, 28, 0.03) 100%);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.tuner-credentials-box:hover {
  transform: translateY(-3px);
  border-color: rgba(114, 28, 36, 0.25);
  box-shadow: 0 15px 35px rgba(114, 28, 36, 0.05);
}

.tuner-credentials-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-burgundy), var(--accent-gold));
}

.credentials-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: var(--brand-burgundy);
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(114, 28, 36, 0.15);
}

.tuner-credentials-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.credential-icon-wrapper {
  background: var(--brand-burgundy-glow);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 8px 20px rgba(154, 123, 28, 0.08);
}

.tuner-credentials-content {
  flex: 1;
  min-width: 280px;
}

.tuner-credentials-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.tuner-credentials-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tuner-credentials-bullets {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tuner-bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
}

.tuner-bullet-svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-burgundy);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tuner-credentials-box {
    padding: 30px 20px;
  }
  .credentials-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
    display: inline-block;
  }
  .tuner-credentials-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .tuner-credentials-title {
    font-size: 1.5rem;
  }
}


/* Service Cards Premium Visual Upgrades */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 0 !important;
  background-color: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 28, 36, 0.22);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--card-border);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.service-card .service-icon-bg {
  margin-bottom: 5px;
}
