:root {
  color-scheme: only light;
  --primary-color: #2563eb; /* Modern Royal Blue */
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --secondary-color: #64748b; /* Slate Grey */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --accent-color: #3b82f6;
  --border-color: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(37, 99, 235, 0.1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-dark: rgba(15, 23, 42, 0.8);
  --primary-glow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.glass-pill {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0f172a;
}

/* Navbar Enhancements */
.navbar {
  transition: var(--transition);
  padding: 0.75rem 0;
  background-color: var(--bg-white) !important;
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand .logo-text {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: #0f172a !important;
}

.logo-icon i {
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted) !important;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* ═══════════════════════════════════════════════
   HERO SECTION — Premium Redesign
   ═══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    #0a0f1e 0%,
    #0f172a 40%,
    #1e1b4b 70%,
    #0f172a 100%
  );
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 60px 0 40px;
}

/* Floating musical notes particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.note {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.08;
  animation: floatNote linear infinite;
  color: #818cf8;
  user-select: none;
}
.n1 {
  left: 4%;
  top: 20%;
  font-size: 2.5rem;
  animation-duration: 14s;
  animation-delay: 0s;
}
.n2 {
  left: 12%;
  top: 70%;
  font-size: 1.5rem;
  animation-duration: 18s;
  animation-delay: 2s;
}
.n3 {
  left: 25%;
  top: 10%;
  font-size: 2rem;
  animation-duration: 16s;
  animation-delay: 4s;
}
.n4 {
  left: 35%;
  top: 80%;
  font-size: 1.2rem;
  animation-duration: 20s;
  animation-delay: 1s;
}
.n5 {
  left: 60%;
  top: 15%;
  font-size: 3rem;
  animation-duration: 12s;
  animation-delay: 3s;
}
.n6 {
  left: 72%;
  top: 65%;
  font-size: 1.8rem;
  animation-duration: 17s;
  animation-delay: 0.5s;
}
.n7 {
  left: 85%;
  top: 30%;
  font-size: 2.2rem;
  animation-duration: 15s;
  animation-delay: 2.5s;
}
.n8 {
  left: 92%;
  top: 75%;
  font-size: 1.4rem;
  animation-duration: 19s;
  animation-delay: 1.5s;
}

@keyframes floatNote {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.06;
  }
  25% {
    opacity: 0.14;
  }
  50% {
    transform: translateY(-80px) rotate(15deg);
    opacity: 0.08;
  }
  75% {
    opacity: 0.12;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.06;
  }
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
  animation: orbPulse 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: 10%;
  animation: orbPulse 10s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Hero layout */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1 1 55%;
}
.hero-right {
  flex: 1 1 42%;
  display: flex;
  justify-content: flex-end;
}

/* Badge / eyebrow */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Hero title */
.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2.5px;
  color: #ffffff;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.4rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.8;
  max-width: 520px;
}
.hero-subtitle strong {
  color: #e2e8f0;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  opacity: 0;
  transition: var(--transition);
}
.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.03);
  color: #fff;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5);
}
.btn-hero-primary:hover::before {
  opacity: 1;
}
.btn-hero-primary i {
  position: relative;
}
.btn-hero-primary span {
  position: relative;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-4px);
}

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}
.trust-pill i {
  color: #6366f1;
  font-size: 0.75rem;
}

/* Hero right — showcase card */
.hero-showcase-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  /* overflow: hidden; */
  backdrop-filter: blur(20px);
  padding: 24px;
  width: 400px;
  max-width: 100%;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.showcase-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.hero-showcase-card:hover .showcase-img {
  transform: scale(1.06);
}

.showcase-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.showcase-info h4 {
  color: #f1f5f9;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.showcase-info p {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.showcase-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.showcase-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #818cf8;
}
.showcase-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

.showcase-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--transition);
}
.showcase-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Floating stat pills */
.hero-float-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.hero-float-stat i {
  color: #6366f1;
}
.stat-1 {
  top: -14px;
  right: -10px;
  animation: floatStat1 4s ease-in-out infinite;
}
.stat-2 {
  bottom: -14px;
  left: -10px;
  animation: floatStat2 5s ease-in-out infinite;
}
@keyframes floatStat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatStat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-scroll-indicator span {
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  margin: auto;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.stats-bar-section {
  padding: 0;
  margin-top: -1px;
  background: var(--bg-light);
}
.stats-bar {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateY(-40px);
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  display: inline;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════
   SECTION EYEBROW
   ═══════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid #dbeafe;
}

/* ═══════════════════════════════════════════════
   SERVICE CARDS — Redesigned
   ═══════════════════════════════════════════════ */
.service-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18);
  border-color: var(--primary-color);
}

/* Decorative bg strip */
.service-card-bg {
  height: 130px;
  width: 100%;
  flex-shrink: 0;
}
.service-card--instruments .service-card-bg {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
}
.service-card--musicians .service-card-bg {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #ec4899 100%);
}

/* Floating icon over the bg strip */
.service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: -36px 0 0 36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.service-card--instruments .service-card-icon {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}
.service-card--musicians .service-card-icon {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}
.service-card:hover .service-card-icon {
  transform: rotate(-8deg) scale(1.12);
}

.service-card-body {
  padding: 24px 36px 36px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.service-card-body h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}
.service-features li i {
  color: #10b981;
  font-size: 0.85rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none !important;
  margin-top: auto;
  padding: 12px 28px;
  border-radius: 100px;
  transition: var(--transition);
  width: fit-content;
}
.service-card--instruments .service-cta {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #dbeafe;
}
.service-card--instruments .service-cta:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  transform: translateX(4px);
}
.service-card--musicians .service-cta {
  background: #fdf4ff;
  color: #9333ea;
  border: 1.5px solid #e9d5ff;
}
.service-card--musicians .service-cta:hover {
  background: #9333ea;
  color: #fff;
  border-color: #9333ea;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   VIEW ALL BUTTON
   ═══════════════════════════════════════════════ */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: var(--transition);
}
.btn-view-all:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* ═══════════════════════════════════════════════
   CTA BANNER — Redesigned
   ═══════════════════════════════════════════════ */
.cta-banner-section {
  padding: 0 0 80px;
}
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.35);
  top: -100px;
  left: -80px;
}
.cta-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.3);
  bottom: -60px;
  right: -50px;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cta-content h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #f1f5f9;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.cta-content h2 span {
  background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  padding: 18px 48px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.45);
}
.btn-cta:hover {
  transform: translateY(-5px) scale(1.03);
  color: #fff;
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.6);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS — Redesigned
   ═══════════════════════════════════════════════ */
.testimonial-section {
  background: var(--bg-light);
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(99, 102, 241, 0.3);
}
.testimonial-card--featured {
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 100%);
  border-color: #4338ca;
}
.testimonial-card--featured .testimonial-text {
  color: #c7d2fe !important;
}
.testimonial-card--featured .testimonial-author h5 {
  color: #e0e7ff;
}
.testimonial-card--featured .testimonial-author small {
  color: #818cf8;
}
.testimonial-card--featured .testimonial-quote-icon {
  color: rgba(129, 140, 248, 0.35);
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 4rem;
  color: #eff6ff;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author h5 {
  font-size: 0.97rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}
.testimonial-author small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-cta,
  .hero-trust {
    justify-content: center;
  }
  .stats-bar {
    flex-wrap: wrap;
    gap: 30px;
    padding: 36px 24px;
    transform: translateY(-20px);
  }
  .stat-divider {
    display: none;
  }
  .cta-banner {
    padding: 60px 30px;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: -1.5px;
  }
  .hero-showcase-card {
    width: 100%;
  }
  .hero-float-stat.stat-1,
  .hero-float-stat.stat-2 {
    display: none;
  }
  .service-card-body {
    padding: 24px 24px 30px;
  }
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}
.section-padding-mini {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 45px;
  text-align: center;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service / Feature Cards */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(-5deg);
}

/* Buttons */
.btn-warning {
  background: var(--primary-gradient);
  border: none;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-warning:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
  color: var(--white);
}

.btn-warning:active {
  transform: translateY(0);
}

.btn-warning::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s;
}

.btn-warning:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0s;
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

/* Modern Category Cards */
/* ═══════════════════════════════════════════════
   CATEGORY CARDS — NEW PREMIUM DESIGN
   ═══════════════════════════════════════════════ */
.category-card {
  display: block;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card .card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.category-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.category-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.category-card .card-footer-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.category-card .card-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #2563eb;
  font-size: 0.9rem;
}

.category-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card .card-count {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  margin-left: auto;
}

@media (max-width: 768px) {
  .category-card {
    border-radius: 16px;
  }
  .category-card .card-footer-info {
    padding: 12px 15px;
    gap: 8px;
  }
  .category-card .card-title {
    font-size: 0.95rem;
  }
  .category-card .card-icon-pill {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}


.instrument-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .instrument-card {
    border-radius: 16px;
  }
}

.instrument-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.meta-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-color);
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #dbeafe;
}

.instrument-card .image-wrapper {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px;
  position: relative; /* Added for absolute positioning of badges */
}

@media (max-width: 768px) {
  .instrument-card .image-wrapper {
    height: 135px;
    padding: 8px;
    border-radius: 12px;
  }
}

.badge-container {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 768px) {
  .badge-container {
    top: 8px;
    left: 8px;
    gap: 3px;
  }
}

.badge-container .badge {
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
}

@media (max-width: 768px) {
  .badge-container .badge {
    padding: 3px 8px;
    font-size: 0.6rem;
    border-radius: 5px;
  }
}

.bg-danger {
  background-color: #ef4444 !important;
}
.bg-success {
  background-color: #10b981 !important;
}
.bg-secondary {
  background-color: #64748b !important;
}

.instrument-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.instrument-card:hover .image-wrapper img {
  transform: scale(1.1) rotate(2deg);
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

@media (max-width: 768px) {
  .card-content {
    padding: 12px;
  }
}

.instrument-name {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .instrument-name {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
}

.delivery-status {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
}

.delivery-status::before {
  content: "●";
  font-size: 10px;
}

.price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .price-action {
    gap: 8px;
    padding-top: 8px;
  }
  .instrument-card .btn-sm {
    padding: 3px 8px !important;
    font-size: 0.7rem !important;
  }
}

.price {
  display: flex;
  flex-direction: column;
  min-width: 0; /* Allow shrinking */
}

.price span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .price span {
    font-size: 0.95rem;
  }
  .price .x-small {
    font-size: 0.65rem;
  }
}

.btn-rent {
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid #dbeafe;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.btn-rent:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.btn-rent {
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid #dbeafe;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--transition);
}

.btn-rent:hover {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.3);
}

/* Forms */
.form-control,
.form-select {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Detail Page Components */
.detail-image-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.main-image-wrapper {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Booking Card & Plans */
.booking-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.plan-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-item {
  padding: 15px 20px;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.plan-item:hover {
  background: #ffffff;
  border-color: #dbeafe;
  transform: translateX(5px);
}

.plan-item.active {
  background: #eff6ff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.plan-item span {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.plan-item strong {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Info Cards (About & Included) */
.info-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #eff6ff;
  color: var(--primary-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.spec-list li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Testimonials */
.testimonial-item {
  padding: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: #eff6ff;
  font-family: serif;
  line-height: 1;
}

/* Utility */
.bg-light-grey {
  background-color: var(--bg-light) !important;
}

.text-blue {
  color: var(--primary-color) !important;
}

.leading-relaxed {
  line-height: 1.8 !important;
}

.info-card p {
  font-size: 1.05rem;
  color: #475569 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Artist Listing Styles */
.filter-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h6 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4b5563;
}

.filter-option input {
  margin-right: 10px;
  accent-color: #ef4444;
}

.artist-card-horizontal {
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.artist-card-horizontal:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px) scale(1.01);
  border-color: var(--primary-color);
}

.artist-card-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.artist-card-horizontal:hover::before {
  left: 100%;
}

.artist-img-wrapper {
  width: 220px;
  height: 220px;
  position: relative;
  flex-shrink: 0;
}

.artist-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4757;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}

.artist-info {
  flex-grow: 1;
}

.artist-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a; /* Changed from red to deep slate for more premium feel */
  margin: 0;
}

.rating-badge {
  background: #fffbeb;
  color: #b45309;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #fde68a;
}

.artist-badges {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.badge-tag {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge-established {
  background: #fff9db;
  color: #f59f00;
  border: 1px solid #ffe066;
}
.badge-top {
  background: #e6fcf5;
  color: #0ca678;
  border: 1px solid #c3fae8;
}
.badge-choice {
  background: #e7f5ff;
  color: #1c7ed6;
  border: 1px solid #a5d8ff;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.genre-tag {
  background: #f3f4f6;
  color: #4b5563;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.artist-meta {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-box {
  margin-top: auto;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color); /* Changed to primary blue */
}

.original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.1rem;
  margin-left: 10px;
  font-weight: 400;
}

.booking-amt {
  font-size: 1rem;
  color: #4b5563;
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .artist-card-horizontal {
    flex-direction: column;
  }
  .artist-img-wrapper {
    width: 100%;
    height: 250px;
  }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS — Infinity Slider
   ═══════════════════════════════════════════════ */

/* Keyframe: slides all cards to the left by 50% (half = original set) */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-section {
  background: var(--bg-light);
  overflow: hidden;
}

/* The outer clipping viewport with left+right fade masks */
.testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0 40px;
  /* Fade left and right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* The scrolling track — must be exactly 2× the original set width */
.testimonial-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.testimonial-slider-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

/* ── Individual Testimonial Card ── */
.tcard {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 32px 28px;
  width: 330px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Featured dark card */
.tcard--featured {
  background: linear-gradient(155deg, #1e1b4b 0%, #312e81 100%);
  border-color: #4338ca;
}
.tcard--featured .tcard-text {
  color: #c7d2fe;
}
.tcard--featured .tcard-quote {
  color: rgba(129, 140, 248, 0.3);
}
.tcard--featured .tcard-author strong {
  color: #e0e7ff;
}
.tcard--featured .tcard-author span {
  color: #818cf8;
}

/* Alt accent card */
.tcard--alt {
  background: linear-gradient(155deg, #fff7ed 0%, #fef3c7 100%);
  border-color: #fde68a;
}
.tcard--alt .tcard-stars {
  color: #d97706;
}

/* Quote watermark */
.tcard-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: #eff6ff;
  pointer-events: none;
  user-select: none;
}

/* Stars */
.tcard-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 3px;
}

/* Review text */
.tcard-text {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.78;
  flex: 1;
}

/* Author row */
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tcard-author strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  color: #0f172a;
}
.tcard-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive: reduce card width on small screens */
@media (max-width: 600px) {
  .tcard {
    width: 270px;
    padding: 24px 20px;
  }
  .testimonial-track {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE — HERO
   ═══════════════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.88) 0%,
    rgba(30, 27, 75, 0.82) 50%,
    rgba(10, 15, 30, 0.88) 100%
  );
}
.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-a {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.3) 0%,
    transparent 70%
  );
  top: -120px;
  left: -100px;
  animation: orbPulse 9s ease-in-out infinite;
}
.orb-b {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.2) 0%,
    transparent 70%
  );
  bottom: -60px;
  right: 5%;
  animation: orbPulse 12s ease-in-out infinite reverse;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 140px 16px 120px;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.about-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.about-hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.about-gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.about-hero-pills span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.about-hero-pills span:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.5);
  color: #a5b4fc;
}

/* Wave */
.about-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 4;
  line-height: 0;
}
.about-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════
   ABOUT SPLIT SECTION
   ═══════════════════════════════════════════════ */
.about-split-section {
  background: #f8fafc;
}

.about-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #0f172a;
  margin: 16px 0 24px;
  line-height: 1.15;
}
.about-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

/* Media stack */
.about-media-stack {
  position: relative;
  padding-bottom: 60px;
}
.about-main-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.about-main-img:hover {
  transform: translateY(-6px);
}
.about-main-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 420px;
}
.about-accent-img {
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid #fff;
  z-index: 2;
}
.about-accent-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  z-index: 3;
}
.about-img-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  animation: floatStat1 4s ease-in-out infinite;
}
.about-img-badge-inner i {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-img-badge-inner strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.about-img-badge-inner span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Feature grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px;
  transition: var(--transition);
}
.about-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.about-feature-item h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}
.about-feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ABOUT STATS SECTION
   ═══════════════════════════════════════════════ */
.about-stats-section {
  padding: 80px 0;
  background: #f8fafc;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}
.about-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-card--featured {
  background: linear-gradient(155deg, #1e1b4b 0%, #312e81 100%);
  border-color: #4338ca;
}
.about-stat-card--featured .about-stat-icon {
  color: #818cf8;
}
.about-stat-card--featured .about-stat-num {
  color: #e0e7ff;
}
.about-stat-card--featured .about-stat-suffix {
  color: #a5b4fc;
}
.about-stat-card--featured .about-stat-label {
  color: #94a3b8;
}
.about-stat-card--featured::before {
  display: none;
}

.about-stat-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 18px;
  display: block;
}
.about-stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  font-family: var(--font-heading);
  display: inline;
  line-height: 1;
}
.about-stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: var(--font-heading);
}
.about-stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   ABOUT VALUES CARDS
   ═══════════════════════════════════════════════ */
.about-values-section {
  background: #fff;
}

.value-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
}
.value-card-top {
  height: 6px;
  flex-shrink: 0;
}
.value-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 28px 0 0 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.value-card:hover .value-card-icon {
  transform: rotate(-8deg) scale(1.1);
}
.value-card-body {
  padding: 20px 28px 32px;
  flex: 1;
}
.value-card-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.value-card-body p {
  font-size: 0.93rem;
  color: #64748b;
  line-height: 1.78;
  margin-bottom: 20px;
}
.value-card-line {
  height: 3px;
  border-radius: 10px;
  width: 50px;
  transition: var(--transition);
}
.value-card:hover .value-card-line {
  width: 80px;
}

/* ═══════════════════════════════════════════════
   JOURNEY TIMELINE
   ═══════════════════════════════════════════════ */
.about-timeline-section {
  background: #f8fafc;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
/* Centre vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, #e0e7ff, #dbeafe, #e0e7ff);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.timeline-item--left {
  flex-direction: row-reverse;
}
.timeline-item--right {
  flex-direction: row;
}

.timeline-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 6px rgba(99, 102, 241, 0.25);
  z-index: 2;
}

.timeline-content {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px 28px;
  width: calc(50% - 40px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.timeline-item--left .timeline-content {
  margin-right: 40px;
}
.timeline-item--right .timeline-content {
  margin-left: 40px;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid #dbeafe;
}
.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT CTA SECTION
   ═══════════════════════════════════════════════ */
.about-cta-section {
  padding: 0 0 100px;
  background: #f8fafc;
}
.about-cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 90px 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.about-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orb-c {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.3);
  top: -100px;
  left: -80px;
}
.orb-d {
  width: 350px;
  height: 350px;
  background: rgba(236, 72, 153, 0.25);
  bottom: -60px;
  right: -50px;
}

.about-cta-content {
  position: relative;
  z-index: 2;
}
.about-cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
}
.about-cta-content h2 span {
  background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-cta-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}
.about-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  color: #fff;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.55);
}
.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.about-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-4px);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 3.2rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-accent-img {
    display: none;
  }
  .about-img-badge {
    right: 10px;
  }
  /* Stack timeline */
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item--left,
  .timeline-item--right {
    flex-direction: column;
  }
  .timeline-content,
  .timeline-item--left .timeline-content,
  .timeline-item--right .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    margin-right: 0 !important;
  }
  .timeline-marker {
    left: 20px;
  }
  .about-cta-content h2 {
    font-size: 2rem;
  }
  .about-cta-banner {
    padding: 60px 30px;
  }
}
@media (max-width: 600px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-section-title {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════════════
   PAGE HERO — Shared system for inner pages
   (Instruments on Rent / Musicians on Hire / Contact)
   ═══════════════════════════════════════════════ */

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Full-size background image layer */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04); /* slight zoom to hide edge on parallax */
  transition: transform 0.6s ease;
}
.page-hero:hover .page-hero-bg {
  transform: scale(1);
}

/* Common dark gradient overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.85) 0%,
    rgba(15, 23, 42, 0.8) 55%,
    rgba(10, 15, 30, 0.85) 100%
  );
}

/* Purple variant (musicians page) */
.page-hero-overlay--purple {
  background: linear-gradient(
    135deg,
    rgba(15, 12, 50, 0.88) 0%,
    rgba(49, 30, 129, 0.8) 55%,
    rgba(15, 12, 50, 0.88) 100%
  );
}

/* Teal/green variant (contact page) */
.page-hero-overlay--teal {
  background: linear-gradient(
    135deg,
    rgba(5, 20, 25, 0.88) 0%,
    rgba(6, 78, 59, 0.8) 55%,
    rgba(5, 20, 25, 0.88) 100%
  );
}

/* Animated gradient orbs */
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.page-hero .orb-left {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -120px;
  animation: orbPulse 10s ease-in-out infinite;
}
.page-hero .orb-right {
  width: 420px;
  height: 420px;
  bottom: -60px;
  right: -80px;
  animation: orbPulse 14s ease-in-out infinite reverse;
}

/* Content wrapper */
.page-hero-inner {
  position: relative;
  z-index: 3;
  padding: 130px 16px 110px;
  width: 100%;
}

.rich-text-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.rich-text-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.rich-text-content li {
    margin-bottom: 0.5rem;
}

.rich-text-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rich-text-content strong, .rich-text-content b {
    font-weight: 700;
    color: #0f172a;
}
/* ── Eyebrow badge ── */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.page-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}

/* ── Headline ── */
.page-hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
}

/* Gradient text variants */
.page-hero-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-gradient--pink {
  background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-gradient--teal {
  background: linear-gradient(135deg, #34d399 0%, #06b6d4 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.page-hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* ── CTA Group ── */
.page-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.phero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  color: #fff;
  padding: 16px 44px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
}
.phero-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  color: #fff;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.6);
}
.phero-btn-primary--purple {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.45);
}
.phero-btn-primary--purple:hover {
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.6);
}
.phero-btn-primary--teal {
  background: linear-gradient(135deg, #059669, #06b6d4);
  box-shadow: 0 12px 35px rgba(5, 150, 105, 0.45);
}
.phero-btn-primary--teal:hover {
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.6);
}

.phero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.phero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-4px);
}

/* ── Trust Pills ── */
.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.page-hero-pills span:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.page-hero-pills span i {
  opacity: 0.75;
}

/* ── Wave divider ── */
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 4;
  line-height: 0;
}
.page-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .page-hero-title {
    font-size: 3rem;
  }
  .page-hero-inner {
    padding: 110px 16px 90px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    min-height: 60vh;
  }
  .page-hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  .page-hero-sub {
    font-size: 0.95rem;
  }
  .phero-btn-primary,
  .phero-btn-secondary {
    padding: 13px 28px;
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM HEADER STYLES
   ═══════════════════════════════════════════════ */
.main-header {
  z-index: 1050;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.top-bar {
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
  padding: 10px 0;
}

.logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo:hover .logo-img {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 15px rgba(37, 99, 235, 0.1));
}

.promo-badge {
  background: #eff6ff;
  color: #2563eb;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #dbeafe;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10b981;
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.main-header .navbar {
  background: #ffffff !important;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  min-height: 0;
}

@media (min-width: 992px) {
  .main-header .navbar {
    min-height: 60px;
  }
}

.main-header .navbar-nav .nav-link {
  color: #1e293b !important;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.7rem 0.8rem !important; /* Reduced further to ensure one line */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 100px;
  margin: 0 4px;
}

.main-header .navbar-nav .nav-link:hover {
  background: #eff6ff;
  color: #2563eb !important;
}

.main-header .navbar-nav .nav-link.active {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Fix for Tailwind conflict with Bootstrap collapse */
.navbar-collapse.collapse {
  visibility: visible !important;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse.collapse {
    display: flex !important;
  }
}

.nav-separator {
  width: 1px;
  height: 25px;
  background: #e2e8f0;
  margin: 0 4px;
  opacity: 0.5;
}

.btn-primary-gradient {
  background: var(--primary-gradient);
  color: #fff !important;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3) !important;
}

.header-quote-btn {
  padding: 8px 18px !important;
  font-weight: 800 !important;
  border-radius: 100px !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15) !important;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .main-header .navbar-nav .nav-link {
    padding: 0.8rem 1rem !important;
    border-bottom: 1px solid #f8fafc;
    border-radius: 0;
    margin: 0;
    justify-content: flex-start;
  }
  .main-header .navbar-nav .nav-link.active {
    background: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: none;
  }
  .nav-separator {
    display: none;
  }
  .navbar-nav {
    padding: 1rem 0;
  }
  .nav-cta {
    padding: 1rem;
    text-align: center;
  }
}

/* ── Toggler Icon Animation ── */
.toggler-icon {
  width: 25px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.toggler-icon span {
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ── Mobile Layout Polish ── */
@media (max-width: 991.98px) {
  .header-actions {
    width: 100%;
    margin-top: 5px;
    justify-content: center;
    order: 3;
  }
  .logo-img {
    height: 80px !important; /* Increased logo on mobile */
  }
  
  .promo-badge, 
  .usp-badge {
    padding: 6px 10px;
    font-size: 0.6rem;
    gap: 4px;
    letter-spacing: 0.5px;
  }
  
  .main-header .navbar-nav .nav-link {
    width: 100% !important;
    height: auto !important;
    padding: 1.2rem !important;
    font-size: 1rem !important;
    border-bottom: 1px solid #f1f5f9;
    justify-content: center !important;
  }
  
  .main-header .navbar-nav .nav-link::after {
    display: none;
  }
  
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
    margin: 0 -15px; /* Pull to edges if container has padding */
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 60px !important;
  }
  
  .promo-badge,
  .usp-badge {
    padding: 4px 6px;
    font-size: 0.5rem;
    gap: 3px;
    font-weight: 700;
  }
  
  .promo-badge .promo-text {
    display: inline-block !important; /* Force show full text */
  }
}

/* ── Refining Multi-line Nav for Mobile ── */
@media (max-width: 991.98px) {
  .main-header .navbar-nav .nav-link {
    white-space: normal !important;
    text-align: center;
    line-height: 1.4;
  }
}

/* Ensure the nav-cta is visible in desktop but not cramped */
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar-nav .nav-link {
    width: 110px;
    font-size: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════
   MODERN CATEGORIZED INVENTORY STYLES
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   RENTKAR-STYLE HEADER & NAVIGATION
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   RENTKAR-STYLE HEADER & NAVIGATION (LIGHT MODE)
   ═══════════════════════════════════════════════ */
.rentkar-wrapper {
    background: #ffffff;
    padding: 20px 0 30px;
    color: #1e293b;
    font-family: var(--font-heading);
    border-bottom: 1px solid #eef2f6;
}

.rentkar-breadcrumb {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rentkar-breadcrumb a { color: #64748b; text-decoration: none; }
.rentkar-breadcrumb .active-crumb { color: #2563eb; }

.rentkar-banner-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 28px;
    padding: 15px 20px;
    border: 1.5px solid #dbeafe;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.banner-img-box {
    width: 100%;
    margin-left: -15px;
}
.banner-img-box img {
    width: 110%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.banner-text-side {
    text-align: right;
}

.banner-title-text {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
    color: #0f172a !important;
}

.brand-logos-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 8px;
}
.brand-mono {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #94a3b8;
}

.banner-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    max-width: 250px;
    margin-left: auto;
}

.rentkar-picker {
    background: #f1f5f9;
    border-radius: 18px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    color: #1e293b;
}

.picker-icon-box {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.picker-label {
    font-weight: 800;
    font-size: 0.95rem;
}

.rentkar-scroll-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0 15px; /* Added 10px top padding to prevent border cutting */
    scrollbar-width: none;
}
.rentkar-scroll-container::-webkit-scrollbar { display: none; }

.rentkar-cat-link {
    text-decoration: none !important;
    color: inherit !important;
}

.rentkar-cat-box {
    min-width: 90px;
    text-align: center;
}
.cat-preview-img {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.rentkar-cat-link.active .cat-preview-img,
.rentkar-cat-link:hover .cat-preview-img {
    background: #eff6ff;
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}
.cat-preview-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.cat-preview-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}
.rentkar-cat-link.active .cat-preview-label {
    color: #2563eb;
}

/* ═══════════════════════════════════════════════
   PREMIUM CATEGORIZED LISTS
   ═══════════════════════════════════════════════ */
.inventory-category-section {
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
}

.instrument-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.rent-card-alt {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rent-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.1);
}

.rent-card-alt .thumb {
    height: 180px;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.4s;
    overflow: hidden;
}

.rent-card-alt:hover .thumb {
    background: #fcfdfe;
}

.rent-card-alt .thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.rent-card-alt:hover .thumb img {
    transform: scale(1.08);
}

.rent-card-alt .content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.rent-card-alt h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.rent-card-alt .price-tag {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.delivery-status-box {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-book-now {
    margin-top: auto;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.btn-book-now:hover {
    background: #1d4ed8;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

.coordinator-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.coordinator-card h2 {
    color: #ffffff !important;
}

.coordinator-card .badge.bg-info {
    background-color: rgba(56, 189, 248, 0.15) !important;
    color: #7dd3fc !important;
    border-color: rgba(56, 189, 248, 0.4) !important;
}

.coordinator-card::after {
    content: '\f21e'; /* Heartbeat or phone */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-size: 10rem;
    opacity: 0.05;
}

.coordinator-price {
    font-size: 3rem;
    font-weight: 900;
    color: #38bdf8;
}

@media (max-width: 768px) {
    .inventory-category-section {
        padding: 25px 0;
    }
    .category-title-box {
        margin-left: 0;
        padding: 8px 25px;
        border-radius: 40px;
        box-shadow: 2px 2px 8px rgba(37, 99, 235, 0.1);
    }
    .category-header {
        justify-content: center;
        margin-bottom: 20px;
    }
    .category-title {
        font-size: 0.85rem;
        letter-spacing: 0.2px;
        font-weight: 900;
    }
    .cat-preview-img {
        width: 65px;
        height: 65px;
        border-radius: 15px;
        padding: 8px;
    }
    .rentkar-cat-box {
        min-width: 75px;
    }
    .instrument-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 0;
    }
    .rent-card-alt {
        border-radius: 15px;
    }
    .rent-card-alt .thumb {
        height: 80px;
        padding: 5px;
    }
    .rent-card-alt .content {
        padding: 6px;
    }
    .card-title-row {
        margin-bottom: 8px;
    }
    .rent-card-alt .content .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px;
    }
    .rent-card-alt h4 {
        font-size: 0.65rem;
        line-height: 1.2;
        height: 1.6rem; /* Adjusted for better fit */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rent-card-alt .price-tag {
        font-size: 0.75rem;
        margin-bottom: 4px;
        display: block;
    }
    .rent-card-alt .delivery-status-box {
        display: none; /* Hide status on mobile to save space */
    }
    .rent-card-alt .btn-book-now {
        font-size: 0.6rem;
        padding: 4px 2px;
        border-radius: 6px;
    }
    .coordinator-card {
        padding: 25px 15px;
        margin-top: 25px;
    }
    .coordinator-price {
        font-size: 2.2rem;
    }
}

@media (max-width: 380px) {
    .instrument-grid {
        grid-template-columns: repeat(2, 1fr); /* Stay 2 columns even on very small phones */
    }
    .rent-card-alt .thumb {
        height: 180px;
    }
}

/* ── Rental Detail Enhancements ── */
.booking-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-label-bold {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #475569;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.custom-form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.custom-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.option-pill {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.option-pill:hover {
    background: #f1f5f9;
}

.option-pill input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.option-pill label {
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.summary-total {
    border-top: 2px dashed #e2e8f0;
    margin-top: 15px;
    padding-top: 15px;
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: #f0fdf4;
}

.item-preview-mini {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
}

@media (max-width: 576px) {
    .booking-card {
        padding: 20px !important;
    }
}

/* ── Refined Product Detail Layout (Image 2 style) ── */
.product-detail-container {
    background: #fff;
    padding: 3rem 0;
}

.gallery-container {
    padding-right: 1.5rem;
}

.main-img-box {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.main-img-box img {
    max-height: 350px;
    object-fit: contain;
}

.thumb-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.thumb-item.active {
    border-color: var(--primary-color);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title-large {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.rental-tabs {
    display: flex;
    background: #fcfdfe;
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid #eef2f6;
    max-width: 400px;
}

.rental-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #64748b;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rental-tab-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.price-display-box {
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, #ffffff, #f0f7ff);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.price-display-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 12px;
    letter-spacing: -1px;
}

.price-unit {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.input-group-custom {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    padding: 2px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-group-custom button {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.input-group-custom button:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.form-group-refined {
    margin-bottom: 10px;
}

.input-group-custom input {
    width: 60px;
    height: 44px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
}

.input-group-custom button:hover {
    background: #e2e8f0;
}

.info-label-mini {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    display: block;
}

.location-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-top: 2rem;
}

.sidebar-card {
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #0f172a;
}

.btn-get-quote {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    background: #1d4ed8;
}

.trust-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 15px 10px;
    border: 1px solid #f8fafc;
    border-radius: 16px;
    background: #fcfdfe;
    transition: all 0.2s;
}

.trust-badge-item:hover {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #475569;
}

.description-section {
    margin-top: 4rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 3rem;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}


/* ═══════════════════════════════════════════════
   MODERN PREMIUM FOOTER
   ═══════════════════════════════════════════════ */
.main-footer {
    background: #0a0f1e;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0;
}

.footer-logo {
    height: 100px; /* Increased logo size */
    width: auto;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: #2563eb;
    margin-top: 4px;
}

.text-primary-light {
    color: #60a5fa;
    transition: color 0.3s;
}

.text-primary-light:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0;
    }
    .footer-logo {
        height: 80px;
    }
}

/* ═══════════════════════════════════════════════
   MODERN CONTACT PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════ */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-outline-group .form-control, 
.input-outline-group .form-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.3s;
}

.input-outline-group .form-control:focus {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-info-item {
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.icon-box-primary {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.contact-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-social-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: translateY(-3px);
}
