/* ==========================================================================
   Dhun - Premium Instrument Rentals Style Sheet
   Aesthetics: Rich dark wood tones, gold/brass highlights, elegant serif typography
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --bg-dark: #090604;
  --bg-darker: #050302;
  --bg-card: #120c08;
  --bg-card-hover: #19120c;
  --primary-gold: #c68b59;
  --primary-gold-hover: #dca779;
  --primary-gold-rgb: 198, 139, 89;
  --text-light: #f4eae1;
  --text-muted: #ab9a8e;
  --text-dark: #120c08;
  --border-color: #261910;
  --border-color-light: #442a1b;
  --success-green: #4ade80;
  --shadow-color: rgba(0, 0, 0, 0.7);
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(35, 23, 15, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(35, 23, 15, 0.15) 0%, transparent 50%);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Base Components & Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(var(--primary-gold-rgb), 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-gold-rgb), 0.3);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
}

.btn-link {
  background: transparent;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 6px;
  padding: 8px 16px;
}

.btn-link:hover {
  color: var(--primary-gold);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 6px;
  width: 100%;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Helpers */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }

.section-header {
  margin-bottom: 50px;
}

.section-tagline {
  font-family: var(--font-sans);
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.header-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 0 auto;
  position: relative;
}

.header-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold);
  border: 2px solid var(--bg-dark);
}

.section-desc {
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--text-muted);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  text-align: center;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1001;
  position: relative;
}

/* Header & Sticky Nav */
header {
  background-color: rgba(9, 6, 4, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

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

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.header-logo-img,
.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.35em;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

.mobile-menu-toggle:hover {
  background-color: var(--border-color);
  color: var(--primary-gold);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 1005;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-close:hover {
  color: var(--primary-gold);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.mobile-cta {
  margin-top: 30px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38; /* Set visibility to 38% for better contrast */
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero:hover .hero-bg-img {
  transform: scale(1.06);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(9, 6, 4, 0.6) 0%, rgba(9, 6, 4, 0.95) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-tagline {
  color: var(--primary-gold);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 650px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-actions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Features Banner */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  margin-top: 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--border-color);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(var(--primary-gold-rgb), 0.1);
  border: 1px solid rgba(var(--primary-gold-rgb), 0.25);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Explore Categories Section */
.explore-categories {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.category-card.active {
  border-color: var(--primary-gold);
  background-color: rgba(var(--primary-gold-rgb), 0.05);
  box-shadow: inset 0 0 10px rgba(var(--primary-gold-rgb), 0.1);
}

.category-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Catalog Section */
.catalog-section {
  padding: 80px 20px;
  background-color: rgba(5, 3, 2, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.filter-tab {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.filter-tab.active {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-color: var(--primary-gold);
}

/* Catalog Dynamic Grid Layout */
.instruments-catalog-container {
  max-width: 1200px;
  margin: 50px auto 0;
}

.category-section-wrapper {
  margin-bottom: 60px;
}

.category-section-title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.category-section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-color-light), transparent);
  margin-left: 20px;
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Instrument Cards */
.instrument-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instrument-card:hover {
  border-color: var(--border-color-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.instrument-image-container {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
}

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

.instrument-card:hover .instrument-img {
  transform: scale(1.08);
}

.original-price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(9, 6, 4, 0.85);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.original-price-tag strong {
  color: var(--text-light);
}

.instrument-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.instrument-category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.instrument-title {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.35;
  height: 46px; /* consistent height for 2 lines */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Interactive Pricing Selector */
.card-pricing-config {
  margin-bottom: 20px;
  background-color: rgba(9, 6, 4, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
}

.card-pricing-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-bottom: 10px;
  gap: 5px;
}

.card-pricing-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  cursor: pointer;
  flex: 1;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.card-pricing-tab:hover {
  color: var(--text-light);
}

.card-pricing-tab.active {
  background-color: rgba(var(--primary-gold-rgb), 0.12);
  color: var(--primary-gold);
}

.card-current-rate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.rate-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
}

.rate-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.btn-card-rent {
  margin-top: auto;
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 20px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 15px;
}

.step-card {
  text-align: center;
  flex: 1;
  z-index: 2;
}

.step-icon-wrapper {
  width: 75px;
  height: 75px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color-light);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(var(--primary-gold-rgb), 0.2);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.step-card h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 180px;
  margin: 0 auto;
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-image: linear-gradient(to right, transparent, var(--primary-gold) 50%, transparent);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.4;
  margin-bottom: 70px;
}

/* Promotional Banner Section */
.promo-banner-section {
  position: relative;
  padding: 100px 20px;
  background-image: linear-gradient(rgba(9, 6, 4, 0.8), rgba(9, 6, 4, 0.95)), url('images/hero-instruments.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
}

.promo-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.promo-tagline {
  color: var(--primary-gold);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
  display: block;
}

.promo-content h2 {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 50px;
}

.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promo-feat {
  background-color: rgba(9, 6, 4, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.promo-feat i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.promo-feat h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 5px;
}

.promo-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* About Us Section */
.about-section {
  position: relative;
  padding: 100px 20px;
  background-color: var(--bg-dark);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.40; /* 40% transparency background image */
}

.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(9, 6, 4, 0.95) 45%, rgba(9, 6, 4, 0.7) 100%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}

.about-content {
  max-width: 750px;
  text-align: left;
}

.about-content h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  color: var(--text-light);
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.about-bullets {
  list-style: none;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  text-align: left;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.stat-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Footer Styling */
footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 80px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand-col p {
  font-size: 0.88rem;
  margin: 20px 0 25px;
  line-height: 1.6;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.social-links a:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-color: var(--primary-gold);
}

.footer-links-col h3,
.footer-contact-col h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-details li i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 4px;
}

.contact-details span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-details strong {
  font-size: 0.95rem;
  color: var(--text-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 15px;
}

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

/* ==========================================================================
   Checkout Modal Styling
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 3, 2, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: rgba(9, 6, 4, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-color: var(--primary-gold);
}

.modal-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

/* Left Visual Column */
.modal-visual-col {
  padding: 40px;
  border-right: 1px solid var(--border-color);
  background-color: rgba(5, 3, 2, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-product-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-bottom: 25px;
}

.modal-product-info {
  width: 100%;
  text-align: left;
}

.modal-category {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.modal-product-info h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.modal-original-value {
  font-size: 0.82rem;
}

.modal-original-value span {
  font-weight: 700;
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.8;
}

/* Right Config Column */
.modal-calc-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-calc-col h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

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

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Duration selection buttons */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.duration-btn {
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.duration-btn:hover {
  border-color: var(--primary-gold);
}

.duration-btn.active {
  background-color: rgba(var(--primary-gold-rgb), 0.06);
  border-color: var(--primary-gold);
}

.duration-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.duration-btn.active .duration-title {
  color: var(--primary-gold);
}

.duration-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
}

/* Trust Badges */
.trust-badge-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-badge {
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.trust-badge i {
  font-size: 1.2rem;
  color: var(--success-green);
  flex-shrink: 0;
}

.trust-badge strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.trust-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.highlight-badge {
  border-color: rgba(var(--primary-gold-rgb), 0.2);
}

.highlight-badge i {
  color: var(--primary-gold);
}

/* Delivery Option Segmented Picker */
.delivery-toggle-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.delivery-option {
  position: relative;
  cursor: pointer;
}

.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-radio-card {
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.delivery-option input[type="radio"]:checked + .delivery-radio-card {
  border-color: var(--primary-gold);
  background-color: rgba(var(--primary-gold-rgb), 0.06);
}

.delivery-radio-card i {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.delivery-option input[type="radio"]:checked + .delivery-radio-card i {
  color: var(--primary-gold);
}

.delivery-radio-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
}

.delivery-cost {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Cost Summary */
.summary-section {
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px;
  margin-top: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.summary-row:last-of-type {
  margin-bottom: 0;
}

.summary-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 12px 0;
}

.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0;
}

.total-row span:last-child {
  color: var(--primary-gold);
  font-size: 1.35rem;
}

/* Date Picker Input Styles */
.date-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.date-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.date-picker-input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.date-picker-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(var(--primary-gold-rgb), 0.20);
}

/* Style the calendar picker icon across webkit browsers */
.date-picker-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(0.5) saturate(5) hue-rotate(330deg);
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.date-picker-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop View (max 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .instruments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-container {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  .footer-contact-col {
    grid-column: span 3;
  }
}

/* Tablet View (max 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .nav-btn {
    display: none;
  }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }
  .steps-container {
    flex-direction: column;
    gap: 30px;
  }
  .step-connector {
    width: 2px;
    height: 30px;
    background-image: linear-gradient(to bottom, transparent, var(--primary-gold) 50%, transparent);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    margin: 0 auto;
  }
  .promo-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats-card {
    order: -1;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-contact-col {
    grid-column: span 1;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-visual-col {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 30px 20px;
  }
  .modal-calc-col {
    padding: 30px 20px;
  }
}

/* Mobile View (max 480px) */
@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  /* Scrolling Marquee for Announcement Bar */
  .announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
  }
  .announcement-bar span {
    display: inline-block;
    padding-left: 100%;
    animation: announcement-marquee 15s linear infinite;
  }

  .hero {
    min-height: 65vh;
    padding: 60px 15px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-actions-container {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions-container .btn {
    width: 100%;
    text-align: center;
  }
  .hero-features {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 20px;
  }
  .feature-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  .feature-item:nth-child(3) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
  }
  .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    flex: 0 0 110px;
    padding: 15px 5px;
    scroll-snap-align: start;
  }
  .instruments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .instrument-image-container {
    height: 120px;
  }
  .original-price-tag {
    top: 8px;
    right: 8px;
    padding: 2px 6px;
    font-size: 0.62rem;
  }
  .instrument-body {
    padding: 12px;
  }
  .instrument-category {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }
  .instrument-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    height: 38px;
  }
  .card-pricing-config {
    margin-bottom: 12px;
    padding: 6px;
    border-radius: 4px;
  }
  .card-pricing-tabs {
    padding-bottom: 6px;
    margin-bottom: 6px;
    gap: 2px;
  }
  .card-pricing-tab {
    font-size: 0.6rem;
    padding: 2px 4px;
  }
  .rate-amount {
    font-size: 1.05rem;
  }
  .rate-period {
    font-size: 0.65rem;
  }
  .btn-card-rent {
    padding: 8px 4px;
    font-size: 0.75rem;
    border-radius: 4px;
  }
  .filter-tabs-container {
    gap: 6px;
  }
  .filter-tab {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .duration-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .delivery-toggle-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-bullets {
    grid-template-columns: 1fr;
  }
  .date-picker-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Bottom drawer style slide-up checkout modal */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-card {
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(100%);
  }
  .modal-overlay.open .modal-card {
    transform: translateY(0);
  }
}

@keyframes announcement-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Terms Page Styles */
.terms-page-hero {
  padding: 80px 20px 40px;
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.terms-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.terms-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.terms-body h2 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.terms-body h2:first-of-type {
  margin-top: 0;
}

.terms-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.terms-body li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.terms-body li::before {
  content: "•";
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 5px;
  top: 0;
}

.terms-contact-info {
  background-color: rgba(var(--primary-gold-rgb), 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-top: 40px;
}

.terms-contact-info h3 {
  font-family: var(--font-serif);
  color: var(--text-light);
  margin-bottom: 15px;
}

.terms-contact-info p {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.terms-contact-info strong {
  color: var(--primary-gold);
}

@media (max-width: 768px) {
  .terms-content {
    padding: 25px;
  }
  .terms-body h2 {
    font-size: 1.3rem;
  }
}
