/* ============================================================
   SOMNATH BIDI FACTORY — Premium Corporate CSS
   ============================================================ */

/* ============ BASE ============ */
#customCursor, #cursorDot { display: none; }

/* ============ LOADING SCREEN ============ */
#loadingScreen {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0a0000 100%);
  z-index: 999998; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loadingScreen.fade-out { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 64px; height: 64px;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: #D4AF37; border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-brand {
  font-family: 'Cinzel', serif; color: #D4AF37;
  font-size: 0.7rem; letter-spacing: 0.5em;
  text-transform: uppercase; margin-top: 1.5rem;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============ HEALTH WARNING MODAL ============ */
#healthModal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 999997; display: flex;
  align-items: center; justify-content: center; padding: 1rem;
}
#healthModal.hidden { display: none; }
.modal-box {
  background: linear-gradient(145deg, #150000 0%, #2a0505 40%, #1a0000 100%);
  border: 2px solid #D4AF37; border-radius: 16px;
  padding: 2.5rem 2rem; max-width: 480px; width: 100%; text-align: center;
  animation: modalIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
  box-shadow: 0 0 80px rgba(212,175,55,0.25), 0 0 0 1px rgba(212,175,55,0.1) inset;
}
.modal-warning-icon {
  font-size: 3rem; margin-bottom: 1rem;
  animation: warningPulse 1.5s ease-in-out infinite;
}
.modal-close-btn {
  background: #8B0000; color: #FFFDD0;
  font-family: 'Cinzel', serif; font-weight: 600;
  letter-spacing: 0.15em; padding: 0.75rem 2.5rem;
  border-radius: 4px; border: none;
  transition: all 0.3s ease; margin-top: 1.5rem;
  display: inline-block;
}
.modal-close-btn:hover {
  background: #6b0000;
  box-shadow: 0 6px 25px rgba(139,0,0,0.5), 0 0 0 2px #D4AF37;
  transform: translateY(-2px);
}

/* ============ NAVIGATION ============ */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999; padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  background: rgba(8,0,0,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
#mainNav.nav-scrolled {
  background: rgba(8,0,0,0.99) !important;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 40px rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-link {
  position: relative; color: rgba(255,253,208,0.9);
  font-family: 'Lato', sans-serif; font-size: 0.875rem;
  font-weight: 400; letter-spacing: 0.06em;
  transition: color 0.3s ease; text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #D4AF37;
  transition: width 0.35s ease;
}
.nav-link:hover { color: #D4AF37; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #D4AF37; }
.nav-link.active::after { width: 100%; }

/* Dropdown */
.dropdown-parent { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,0,0,0.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px; min-width: 210px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease; pointer-events: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: rgba(8,0,0,0.97);
  border-left: 1px solid rgba(212,175,55,0.25);
  border-top: 1px solid rgba(212,175,55,0.25);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown-parent:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  pointer-events: auto; top: calc(100% + 8px);
}
.dropdown-item {
  display: block; padding: 0.7rem 1.25rem;
  color: rgba(255,253,208,0.75); font-size: 0.83rem;
  font-family: 'Lato', sans-serif; letter-spacing: 0.03em;
  transition: all 0.2s ease; text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  color: #D4AF37; background: rgba(139,0,0,0.25);
  padding-left: 1.6rem;
}

/* ============ GLASSMORPHISM ============ */
.glass {
  background: rgba(255,253,208,0.09);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,55,0.32);
}
.glass-dark {
  background: rgba(8,0,0,0.70);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212,175,55,0.25);
}
.glass-white {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ============ TEXT GRADIENTS ============ */
.text-gold-gradient {
  background: linear-gradient(135deg, #B8960C 0%, #D4AF37 30%, #F5E27A 60%, #D4AF37 80%, #B8960C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-shimmer {
  background: linear-gradient(90deg, #D4AF37 0%, #F5E27A 25%, #D4AF37 50%, #F5E27A 75%, #D4AF37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block; background: #8B0000; color: #FFFDD0;
  font-family: 'Cinzel', serif; font-weight: 600;
  letter-spacing: 0.12em; font-size: 0.82rem;
  padding: 0.875rem 2rem; border-radius: 4px;
  transition: all 0.35s ease; text-decoration: none;
  position: relative; overflow: hidden; border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.18));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  background: #6b0000;
  box-shadow: 0 8px 35px rgba(139,0,0,0.55), 0 0 0 2px #D4AF37;
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }

.btn-gold {
  display: inline-block; background: transparent; color: #D4AF37;
  font-family: 'Cinzel', serif; font-weight: 600;
  letter-spacing: 0.12em; font-size: 0.82rem;
  padding: 0.875rem 2rem; border-radius: 4px;
  border: 2px solid #D4AF37;
  transition: all 0.35s ease; text-decoration: none;
}
.btn-gold:hover {
  background: #D4AF37; color: #1a0000;
  box-shadow: 0 8px 35px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-block; background: #0B6623; color: #FFFDD0;
  font-family: 'Cinzel', serif; font-weight: 600;
  letter-spacing: 0.12em; font-size: 0.82rem;
  padding: 0.875rem 2rem; border-radius: 4px;
  transition: all 0.35s ease; text-decoration: none; border: none;
}
.btn-green:hover {
  background: #085018;
  box-shadow: 0 8px 35px rgba(11,102,35,0.5);
  transform: translateY(-2px);
}

/* ============ SECTION UTILITIES ============ */
.section-label {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.42em; color: #D4AF37;
  text-transform: uppercase; display: block; margin-bottom: 0.75rem;
  text-shadow: 0 0 12px rgba(212,175,55,0.5), 0 0 24px rgba(212,175,55,0.2);
  font-weight: 600;
}
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.2; letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
.section-subheading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic; font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.gold-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 1.25rem auto;
}
.gold-divider-left {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, #D4AF37, transparent);
  margin: 1.25rem 0;
}
.gold-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

/* ============ HERO ============ */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 60px rgba(212,175,55,0.15);
  -webkit-font-smoothing: antialiased;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic; font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  -webkit-font-smoothing: antialiased;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
  background: white; border-radius: 8px;
  overflow: hidden; transition: all 0.45s ease;
  border: 1px solid rgba(212,175,55,0.2);
  position: relative; text-decoration: none;
}
.product-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.02), rgba(212,175,55,0.06));
  opacity: 0; transition: opacity 0.3s; z-index: 1; pointer-events: none;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 65px rgba(139,0,0,0.18), 0 0 0 2px #D4AF37;
}
.product-card:hover::after { opacity: 1; }
.product-card .card-img { overflow: hidden; }
.product-card .card-img img { transition: transform 0.65s ease; }
.product-card:hover .card-img img { transform: scale(1.1); }

/* ============ GALLERY ============ */
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 8px; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.65s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover { box-shadow: 0 0 0 3px #D4AF37; }

/* ============ TIMELINE ============ */
.timeline-item {
  position: relative; padding-left: 3rem; padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: ''; position: absolute;
  left: 10px; top: 22px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #D4AF37, rgba(212,175,55,0.1));
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #8B0000; border: 3px solid #D4AF37;
  box-shadow: 0 0 20px rgba(212,175,55,0.45);
}
.timeline-number {
  position: absolute; left: -60px; top: -4px;
  font-family: 'Cinzel', serif; font-size: 3rem;
  font-weight: 900; color: rgba(212,175,55,0.08);
  line-height: 1; user-select: none;
}

/* ============ STATS ============ */
.stat-card {
  text-align: center; padding: 2rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139,0,0,0.04), rgba(212,175,55,0.02));
  transition: all 0.35s ease;
}
.stat-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 10px 40px rgba(139,0,0,0.12);
  transform: translateY(-5px);
}
.stat-number {
  font-family: 'Cinzel', serif; font-size: 2.75rem;
  font-weight: 900; line-height: 1;
}
.stat-label {
  font-family: 'Lato', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #7C3A0A; margin-top: 0.5rem;
}

/* ============ SOCIAL ICONS ============ */
.social-icon {
  width: 48px; height: 48px;
  border: 2px solid rgba(212,175,55,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #D4AF37; transition: all 0.35s ease; text-decoration: none;
}
.social-icon:hover {
  border-color: #D4AF37;
  background: rgba(212,175,55,0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

/* ============ FOOTER ============ */
.footer-link {
  color: rgba(255,253,208,0.6);
  transition: color 0.3s ease; font-size: 0.875rem;
  text-decoration: none; display: inline-block;
}
.footer-link:hover { color: #D4AF37; padding-left: 4px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 9990; display: flex; flex-direction: column; gap: 0.75rem;
}
.whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease; text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  animation: none;
}

/* ============ PAGE INNER HERO ============ */
.page-hero {
  min-height: 50vh; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0000 0%, #1e0000 40%, #2d0a00 70%, #0a0000 100%);
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============ FORM INPUTS ============ */
.form-input {
  background: rgba(255,253,208,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px; padding: 0.875rem 1rem;
  color: #FFFDD0; font-family: 'Lato', sans-serif;
  transition: all 0.3s ease; outline: none; width: 100%;
  font-size: 0.9rem;
}
.form-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: rgba(255,253,208,0.08);
}
.form-input::placeholder { color: rgba(255,253,208,0.3); }
.form-label {
  display: block; color: rgba(255,253,208,0.75);
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
}

/* ============ PAYMENT TABLE ============ */
.payment-row {
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: background 0.2s ease;
}
.payment-row:hover { background: rgba(212,175,55,0.04); }
.payment-row:last-child { border-bottom: none; }

/* ============ BREADCRUMB ============ */
.breadcrumb-link {
  color: rgba(212,175,55,0.65); transition: color 0.3s;
  text-decoration: none; font-size: 0.8rem;
}
.breadcrumb-link:hover { color: #D4AF37; }

/* ============ ORNAMENTAL PATTERNS ============ */
.ornament {
  font-family: 'Cinzel', serif; color: #D4AF37;
  font-size: 0.9rem; letter-spacing: 0.5em; opacity: 0.6;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #080000; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8B0000, #D4AF37);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

/* ============ SCROLL TO TOP ============ */
#scrollTop {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: #8B0000; border: 2px solid #D4AF37;
  display: flex; align-items: center; justify-content: center;
  color: #D4AF37; z-index: 9980;
  transition: all 0.3s ease; opacity: 0; visibility: hidden;
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover {
  background: #D4AF37; color: #1a0000; transform: translateY(-3px);
}

/* ============ ANIMATIONS ============ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); } }
@keyframes warningPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Parallax */
.parallax-bg { background-attachment: fixed; background-size: cover; background-position: center; }
@media (max-width: 768px) { .parallax-bg { background-attachment: scroll; } }

/* AOS custom */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Page transition */
main, .page-content { animation: fadeIn 0.5s ease; }

/* Gold glow hover */
.hover-gold-glow:hover { box-shadow: 0 0 30px rgba(212,175,55,0.3); }

/* Gradient animated bg */
.animated-gradient {
  background: linear-gradient(135deg, #8B0000, #5A3A1B, #0B6623, #8B0000);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
}

/* Info card */
.info-card {
  padding: 2rem; border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Map embed */
.map-frame {
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 8px; overflow: hidden;
  transition: border-color 0.3s;
}
.map-frame:hover { border-color: #D4AF37; }

/* Mobile menu */
#mobileMenu {
  background: rgba(8,0,0,0.98);
  border-top: 1px solid rgba(212,175,55,0.15);
}

/* ============================================================
   RESPONSIVE — comprehensive mobile / tablet fixes
   ============================================================ */

/* ---- GLOBAL MOBILE PADDING ---- */
@media (max-width: 640px) {
  .max-w-7xl { padding-left: 1rem !important; padding-right: 1rem !important; }
}

/* ---- TYPOGRAPHY SCALING ---- */
@media (max-width: 640px) {
  .hero-title  { font-size: 2rem !important; letter-spacing: 0.02em; }
  .hero-subtitle { font-size: 0.95rem !important; }
  .section-heading { font-size: 1.5rem !important; }
  .section-subheading { font-size: 0.95rem !important; }
  .stat-number { font-size: 2rem !important; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-title  { font-size: clamp(2.4rem, 5vw, 3.5rem) !important; }
  .section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem) !important; }
}

/* ---- HERO ---- */
@media (max-width: 640px) {
  .hero-section { min-height: 90vh; }
  .page-hero   { min-height: 42vh; }
  .hero-section .max-w-7xl,
  .page-hero   .max-w-7xl { padding-top: 6rem !important; padding-bottom: 2rem !important; }
  .scroll-indicator { display: none; }
}

/* ---- SECTION VERTICAL PADDING ---- */
@media (max-width: 640px) {
  .py-24 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  .py-20 { padding-top: 3rem   !important; padding-bottom: 3rem   !important; }
  .py-16 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .gap-16{ gap: 2.5rem !important; }
  .gap-14{ gap: 2rem   !important; }
}

/* ---- NAVIGATION ---- */
@media (max-width: 1024px) {
  #mainNav { padding: 0.6rem 1rem !important; }
  #mainNav img { height: 2.5rem !important; }
}
@media (max-width: 640px) {
  #navBrand span:first-child { font-size: 0.85rem !important; }
  #navBrand span:last-child  { font-size: 0.5rem  !important; }
}

/* ---- BUTTONS (stack on mobile) ---- */
@media (max-width: 480px) {
  .btn-primary, .btn-gold, .btn-green {
    display: block; width: 100%; text-align: center;
    padding: 0.875rem 1.5rem;
  }
  section .flex.flex-wrap.gap-4,
  section .flex.flex-wrap.gap-3 { flex-direction: column; align-items: center; }
}

/* ---- PRODUCT CARDS ---- */
@media (max-width: 640px) {
  .product-card .card-img { height: 200px !important; }
}

/* ---- GALLERY MASONRY ---- */
@media (max-width: 480px) {
  .masonry { columns: 1 !important; }
  .masonry-item { height: auto !important; min-height: 180px; }
}
@media (min-width: 481px) and (max-width: 767px) {
  .masonry { columns: 2 !important; }
}

/* ---- REAL IMAGE CARDS ---- */
.img-card {
  position: relative; overflow: hidden;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.img-card-wrap { overflow: hidden; border-radius: 8px; }
.img-card-wrap:hover .img-card { transform: scale(1.08); }

/* ---- STATS STRIP (2-col on xs) ---- */
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}

/* ---- TIMELINE (mobile) ---- */
@media (max-width: 640px) {
  .timeline-item { padding-left: 2.5rem; padding-bottom: 1.75rem; }
  .timeline-number { display: none; }
}

/* ---- FOOTER (mobile) ---- */
@media (max-width: 640px) {
  footer .grid { gap: 2rem !important; }
}

/* ---- MODAL (mobile) ---- */
@media (max-width: 480px) {
  .modal-box { padding: 2rem 1.25rem; }
  .modal-box p.font-display.text-2xl { font-size: 1.2rem !important; }
}

/* ---- PAYMENT TABLE (mobile scroll) ---- */
@media (max-width: 640px) {
  .payment-row { flex-direction: column; gap: 0.25rem; padding: 0.75rem 1rem; }
  .payment-row span:first-child { color: #8B0000; }
}

/* ---- INFO CARDS (mobile) ---- */
@media (max-width: 640px) {
  .info-card { padding: 1.25rem; }
}

/* ============ TRADITIONAL BIDI SPOTLIGHT ============ */
.trad-bidi-section { background: #0d0000; }
.trad-bidi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.trad-bidi-img-panel {
  position: relative; overflow: hidden;
}
.trad-bidi-main-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 580px;
  transition: transform 0.8s ease;
}
.trad-bidi-img-panel:hover .trad-bidi-main-img { transform: scale(1.04); }
.trad-bidi-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, #0d0000 98%);
}
.trad-bidi-content-panel {
  padding: 5rem 4rem 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.trad-bidi-title {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 1.05;
}
.trad-stat-pill {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,253,208,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px; padding: 0.45rem 0.9rem;
}
.trad-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem;
}
.trad-feature-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: rgba(255,253,208,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 8px; padding: 0.85rem;
  transition: border-color 0.3s, background 0.3s;
}
.trad-feature-item:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(255,253,208,0.07);
}
.trad-feature-icon { font-size: 1.3rem; flex-shrink: 0; }

/* Tablet */
@media (max-width: 1024px) {
  .trad-bidi-grid { grid-template-columns: 1fr; min-height: auto; }
  .trad-bidi-img-panel { min-height: 380px; }
  .trad-bidi-main-img { min-height: 380px; }
  .trad-bidi-img-overlay {
    background: linear-gradient(to top, rgba(13,0,0,0.9) 0%, transparent 60%);
  }
  .trad-bidi-content-panel { padding: 3rem 2.5rem; }
}
@media (max-width: 640px) {
  .trad-bidi-img-panel { min-height: 260px; }
  .trad-bidi-main-img { min-height: 260px; }
  .trad-features-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .trad-bidi-content-panel { padding: 2rem 1.25rem 2.5rem; }
  .trad-bidi-title { font-size: 2.4rem !important; }
}

/* ---- WHATSAPP FLOAT (smaller on mobile) ---- */
@media (max-width: 480px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .whatsapp-btn   { width: 48px !important; height: 48px !important; }
  .whatsapp-btn svg { width: 1.4rem !important; height: 1.4rem !important; }
}

/* ---- LOADING SCREEN (mobile) ---- */
@media (max-width: 480px) {
  #loadingScreen img { height: 3.5rem !important; }
}

/* ---- GALLERY FILTER BUTTONS (wrap nicely) ---- */
@media (max-width: 640px) {
  #galleryFilter { gap: 0.5rem; }
  .filter-btn { font-size: 0.65rem !important; padding: 0.4rem 0.9rem !important; }
}

/* ---- MAP FRAMES (mobile height) ---- */
@media (max-width: 640px) {
  .map-frame { height: 250px !important; }
}

/* ---- REAL IMAGE HELPERS ---- */
.obj-cover  { width:100%; height:100%; object-fit:cover; display:block; }
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
}
.real-img-box {
  position: relative; overflow: hidden; border-radius: 8px;
}
.real-img-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s ease;
}
.real-img-box:hover img { transform: scale(1.06); }

/* ============================================================
   GLOBAL RESPONSIVE ENHANCEMENTS (whole website)
   ============================================================ */

/* ---- BASE: prevent horizontal overflow on all pages ---- */
html, body { max-width: 100vw; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ---- NAVIGATION: refined mobile behaviour ---- */
@media (max-width: 1024px) {
  #mainNav { padding: 0.55rem 1rem !important; }
  #mobileMenu a { font-size: 0.9rem; padding: 0.75rem 1rem; }
}
@media (max-width: 640px) {
  #mainNav { padding: 0.5rem 0.75rem !important; }
  #mobileMenu { font-size: 0.85rem; }
  #mobileMenu .px-4 { padding-left: 0.85rem; padding-right: 0.85rem; }
}

/* ---- HERO SECTION ---- */
@media (max-width: 768px) {
  .hero-section { min-height: 100svh; }
  .hero-section .max-w-7xl { padding-top: 7rem !important; padding-bottom: 3rem !important; }
  .hero-section .max-w-3xl { max-width: 100% !important; }
  .hero-section p.text-brand-cream\/60 { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero-section .ornament { font-size: 0.7rem; letter-spacing: 0.3em; }
  .hero-section .section-label { font-size: 0.6rem; }
  .hero-section .gold-divider-left { width: 50px; }
}

/* ---- PAGE INNER HERO ---- */
@media (max-width: 768px) {
  .page-hero { min-height: 38vh; padding-top: 5.5rem; padding-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.5rem) !important; }
  .page-hero p { font-size: 0.85rem; }
  .breadcrumb-link, .page-hero nav span { font-size: 0.7rem; }
}

/* ---- STATS STRIP ---- */
@media (max-width: 640px) {
  .bg-brand-red .grid { gap: 1rem !important; }
  .bg-brand-red .grid > div { padding: 0.5rem; }
  .bg-brand-red p.text-3xl { font-size: 1.75rem !important; }
  .bg-brand-red p.text-xs { font-size: 0.6rem; }
}
@media (max-width: 380px) {
  .bg-brand-red .grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ---- BRAND STORY SECTION ---- */
@media (max-width: 1024px) {
  section.py-24.bg-brand-cream .grid.gap-16 { gap: 3rem !important; }
  section.py-24.bg-brand-cream .grid.grid-cols-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  section.py-24.bg-brand-cream .grid.grid-cols-2 { gap: 1.5rem !important; }
  .info-card { padding: 1rem; }
  .info-card .text-4xl { font-size: 2rem !important; }
}

/* ---- PRODUCT CARDS GRID ---- */
@media (max-width: 900px) {
  section#products .grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px) {
  section#products .grid { grid-template-columns: 1fr !important; }
  .product-card .card-img { height: 220px !important; }
  .product-card .p-6 { padding: 1.1rem; }
  .product-card h3 { font-size: 1.1rem !important; }
}

/* ---- MANUFACTURING GRID ---- */
@media (max-width: 768px) {
  section#manufacturing .grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  section#manufacturing .glass { padding: 1rem !important; }
  section#manufacturing .w-14 { width: 3rem !important; height: 3rem !important; }
}

/* ---- GALLERY PREVIEW (homepage) ---- */
@media (max-width: 768px) {
  section#gallery .grid { grid-template-columns: repeat(2,1fr) !important; }
  section#gallery .gallery-item { height: 160px !important; }
  section#gallery .md\:row-span-2 { row-span: 1 !important; }
}
@media (max-width: 480px) {
  section#gallery .grid { grid-template-columns: 1fr !important; }
  section#gallery .gallery-item { height: 200px !important; }
}

/* ---- GALLERY PAGE MASONRY ---- */
@media (max-width: 640px) {
  .masonry { columns: 1 !important; gap: 0.75rem; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .masonry { columns: 2 !important; }
}
@media (max-width: 640px) {
  .masonry-item { min-height: 200px; margin-bottom: 0.75rem; }
  #galleryFilter { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .filter-btn { font-size: 0.65rem !important; padding: 0.4rem 0.75rem !important; }
}

/* ---- DEALER CTA SECTION ---- */
@media (max-width: 640px) {
  section.py-24.relative.overflow-hidden .section-heading { font-size: 1.6rem !important; }
  section.py-24.relative.overflow-hidden p.text-lg { font-size: 0.95rem; }
  section.py-24.relative.overflow-hidden p.max-w-2xl { font-size: 0.85rem; }
}

/* ---- SOCIAL MEDIA SECTION ---- */
@media (max-width: 640px) {
  section.py-24.bg-brand-cream .grid.grid-cols-4 { grid-template-columns: repeat(2,1fr) !important; }
  section.py-24.bg-brand-cream .w-16 { width: 3rem !important; height: 3rem !important; }
  section.py-24.bg-brand-cream .w-8 { width: 1.5rem !important; height: 1.5rem !important; }
}

/* ---- FOOTER ---- */
@media (max-width: 1024px) {
  footer .grid.lg\:grid-cols-4 { grid-template-columns: repeat(2,1fr) !important; gap: 2rem !important; }
}
@media (max-width: 640px) {
  footer .grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  footer { padding-top: 3rem; }
  footer .pt-16 { padding-top: 2.5rem !important; }
  footer .pb-8 { padding-bottom: 1.5rem !important; }
  footer .gap-12 { gap: 1.75rem !important; }
  .social-icon { width: 40px !important; height: 40px !important; }
  footer .flex.gap-3 { flex-wrap: wrap; gap: 0.5rem !important; }
}

/* ---- ABOUT PAGE ---- */
@media (max-width: 768px) {
  section .grid.lg\:grid-cols-2.gap-16 { gap: 2.5rem !important; }
  section .grid.lg\:grid-cols-2 { grid-template-columns: 1fr !important; }
}

/* ---- PRODUCTS PAGE ---- */
@media (max-width: 768px) {
  section .lg\:grid-cols-2 { grid-template-columns: 1fr !important; }
  section .lg\:grid-cols-2 > div:first-child,
  section .lg\:grid-cols-2 > div:last-child { order: unset !important; }
  section .lg\:order-first { order: unset !important; }
}
@media (max-width: 640px) {
  section .h-96 { height: 260px !important; }
  section .h-80 { height: 220px !important; }
  section .p-8 { padding: 1.25rem !important; }
  section .p-10 { padding: 1.5rem !important; }
  section .p-12 { padding: 1.75rem !important; }
}

/* ---- MANUFACTURING PAGE STAGES ---- */
@media (max-width: 768px) {
  .stage-image { height: 250px !important; }
  .stage-grid { grid-template-columns: 1fr !important; }
}

/* ---- FORM PAGES (contact, dealer-enquiry, careers) ---- */
@media (max-width: 640px) {
  .form-input { font-size: 0.9rem; padding: 0.75rem; }
  .grid.grid-cols-2 { grid-template-columns: 1fr !important; }
  .form-label { font-size: 0.72rem; }
}

/* ---- PAYMENT PAGE TABLE ---- */
@media (max-width: 640px) {
  .payment-row { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.75rem 0.85rem; }
  table, thead, tbody, tr { display: block; width: 100%; }
  th { display: none; }
  td { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(212,175,55,0.1); }
  td::before { content: attr(data-label); font-weight: 700; color: #D4AF37; font-size: 0.7rem; }
}

/* ---- DISTRIBUTION NETWORK ---- */
@media (max-width: 768px) {
  .district-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .district-grid { grid-template-columns: 1fr !important; }
}

/* ---- CAREERS PAGE ---- */
@media (max-width: 640px) {
  .job-card { padding: 1.25rem !important; }
}

/* ---- QUALITY CONTROL PAGE ---- */
@media (max-width: 640px) {
  .quality-grid { grid-template-columns: 1fr !important; }
}

/* ---- COMPANY HISTORY TIMELINE ---- */
@media (max-width: 640px) {
  .timeline-item { padding-left: 2.25rem; }
  .timeline-dot { width: 18px; height: 18px; }
}

/* ---- SAFETY & HEALTH PAGE ---- */
@media (max-width: 640px) {
  .health-grid { grid-template-columns: 1fr !important; }
  .health-card { padding: 1.25rem !important; }
}

/* ---- CONTACT PAGE MAP ---- */
@media (max-width: 768px) {
  .map-frame { height: 300px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .map-frame { height: 220px !important; }
}

/* ---- GLASS CARDS ON MOBILE ---- */
@media (max-width: 640px) {
  .glass, .glass-dark, .glass-white {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ---- SECTION HEADINGS ALIGNMENT ON MOBILE ---- */
@media (max-width: 480px) {
  .section-label { font-size: 0.6rem; letter-spacing: 0.3em; }
  .gold-divider { margin: 0.85rem auto; }
  .ornament { font-size: 0.7rem; }
}

/* ---- BUTTON SIZING ON SMALL SCREENS ---- */
@media (max-width: 360px) {
  .btn-primary, .btn-gold, .btn-green {
    font-size: 0.72rem !important;
    padding: 0.7rem 1.1rem !important;
    letter-spacing: 0.08em !important;
  }
}

/* ---- PREVENT CARD HOVER TRANSLATE ON TOUCH ---- */
@media (hover: none) {
  .product-card:hover { transform: none; box-shadow: none; }
  .info-card:hover { transform: none; }
  .stat-card:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
  .trad-bidi-img-panel:hover .trad-bidi-main-img { transform: none; }
}

/* ============ CUSTOMER REVIEWS ============ */
.review-card {
  background: white;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 24px rgba(139,0,0,0.06);
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.review-card:hover::before { transform: scaleX(1); }
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139,0,0,0.14), 0 0 0 1px rgba(212,175,55,0.3);
  border-color: rgba(212,175,55,0.4);
}
.review-quote-icon {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1;
  color: rgba(212,175,55,0.12);
  pointer-events: none; user-select: none;
}
.review-featured-badge {
  position: absolute; top: 1.25rem; left: 1.5rem;
  background: #8B0000; color: #FFFDD0;
  font-family: 'Cinzel', serif; font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 20px;
}
.review-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.3), transparent);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #8B0000, #D4AF37);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 1rem; color: #FFFDD0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .review-card { padding: 1.5rem; }
  .review-quote-icon { font-size: 3.5rem; top: 1rem; right: 1rem; }
  section#reviews .grid { gap: 1.25rem !important; }
}

/* ============ FOUNDER & OWNER SECTION ============ */
.founder-portrait-wrap {
  position: relative; display: inline-flex; flex-direction: column; align-items: center;
}
.founder-portrait-ring {
  width: 180px; height: 180px; border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.5);
  padding: 8px;
  box-shadow: 0 0 60px rgba(212,175,55,0.2), 0 0 0 1px rgba(212,175,55,0.1);
  animation: float 4s ease-in-out infinite;
}
.founder-portrait-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(135deg, #1a0000 0%, #3d0800 50%, #1a0000 100%);
  border: 2px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
}
.founder-gold-badge {
  margin-top: 1rem;
  background: linear-gradient(135deg, #B8960C, #D4AF37, #F5E27A, #D4AF37);
  color: #1a0000;
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem; border-radius: 20px;
}
.founder-stat-chip {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,253,208,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px; padding: 0.5rem 1rem;
  gap: 0.1rem;
}
.founder-quote-box {
  background: rgba(255,253,208,0.04);
  border-left: 3px solid #D4AF37;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
}
@media (max-width: 1024px) {
  .founder-portrait-ring { width: 150px; height: 150px; }
}
@media (max-width: 640px) {
  .founder-portrait-ring { width: 130px; height: 130px; }
  .founder-portrait-inner .text-5xl { font-size: 2.25rem !important; }
  section#founder .glass { padding: 1.5rem !important; }
  .founder-quote-box { padding: 1rem; }
}

/* ============ BANK DETAIL ITEMS ============ */
.bank-detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
.bank-detail-label {
  color: rgba(255,253,208,0.62); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.bank-detail-value {
  font-family: 'Cinzel', serif; color: #FFFDD0;
  font-weight: 600; font-size: 0.95rem;
}
@media (max-width: 480px) {
  .bank-detail-item { padding: 0.5rem 0; border-bottom: 1px solid rgba(212,175,55,0.1); }
}

/* ============================================================
   VISIBILITY, CONTRAST & ACCESSIBILITY IMPROVEMENTS
   WCAG AA: 4.5:1 normal text · 3:1 large text
   Maintains luxury dark-gold theme — only improves readability
   ============================================================ */

/* ── 1. SERVICE CARD DARK — solid visible cards on dark bg ─── */
.service-card-dark {
  background: linear-gradient(135deg, rgba(20,2,2,0.94) 0%, rgba(32,6,4,0.97) 100%);
  border: 1px solid rgba(212,175,55,0.44);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.55), inset 0 1px 0 rgba(212,175,55,0.08);
  transition: all 0.35s ease;
}
.service-card-dark:hover {
  background: linear-gradient(135deg, rgba(30,4,4,0.98) 0%, rgba(50,8,6,0.99) 100%);
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 18px 50px rgba(212,175,55,0.2), 0 0 0 1px rgba(212,175,55,0.45), 0 4px 14px rgba(0,0,0,0.6);
  transform: translateY(-10px) scale(1.01);
}
.service-card-dark .svc-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(139,0,0,0.62);
  border: 1px solid rgba(212,175,55,0.38);
  box-shadow: 0 0 22px rgba(139,0,0,0.45), 0 0 10px rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.service-card-dark h3 {
  color: #D4AF37;
  font-size: 0.96rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card-dark p {
  color: rgba(255,253,208,0.86);
  font-size: 0.78rem;
  line-height: 1.7;
}

/* ── 2. PRODUCTS PAGE — feature boxes on dark sections ─────── */
section[class*="bg-\[#0a0000\]"] .glass,
section.bg-\[#0a0000\] .glass {
  background: rgba(22,3,3,0.93) !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
}

/* ── 3. GLASS: better base visibility everywhere ────────────── */
/* (Overrides handled per-context above; base already improved above) */
.glass p,
.glass span:not(.section-label) {
  color: rgba(255,253,208,0.88);
}

/* ── 4. SECTION LABELS on light backgrounds (WCAG fix) ──────── */
/* Gold #D4AF37 on white = 2.1:1 → FAIL. Darken to #92600A = 4.9:1 */
.bg-white .section-label,
section.bg-white .section-label,
.bg-brand-cream .section-label,
section.bg-brand-cream .section-label {
  color: #92600A !important;
}

/* ── 5. NAV LINKS — full opacity for clarity ─────────────────── */
.nav-link { color: rgba(255,253,208,0.96) !important; }
.dropdown-item { color: rgba(255,253,208,0.88) !important; }

/* ── 6. BREADCRUMB — separator and current page text ─────────── */
/* Separator was text-brand-gold/40 → barely visible */
span.text-brand-gold\/40 { color: rgba(212,175,55,0.72) !important; }
/* Current page label */
span.text-brand-cream\/50 { color: rgba(255,253,208,0.82) !important; }

/* ── 7. PAGE HERO — subtitle contrast ────────────────────────── */
.page-hero .hero-subtitle,
.hero-subtitle.text-brand-cream\/60 { color: rgba(255,253,208,0.84) !important; }

/* ── 8. HERO scroll indicator ──────────────────────────────────── */
.scroll-indicator { border-color: rgba(212,175,55,0.65) !important; }
.scroll-indicator > div { background: #D4AF37 !important; }
p.text-brand-cream\/40 { color: rgba(255,253,208,0.68) !important; }

/* ── 9. CTA / DELIVERY sections — body text ─────────────────── */
/* Was text-brand-cream/60 → now /85 */
section.py-16 p.text-brand-cream\/60,
section.py-16 p.text-brand-cream\/70 {
  color: rgba(255,253,208,0.88) !important;
}
/* CTA banner body */
section.bg-brand-red p.text-brand-cream\/70 { color: rgba(255,253,208,0.92) !important; }

/* ── 10. FOUNDER SECTION ─────────────────────────────────────── */
/* Subtitle — was /50 → too faint */
p.text-brand-cream\/50 { color: rgba(255,253,208,0.80) !important; }
/* Stat chips — bg-white/5 almost invisible */
.bg-white\/5 {
  background: rgba(255,255,255,0.11) !important;
  border-color: rgba(212,175,55,0.38) !important;
}
/* Stat chip labels */
.bg-white\/5 span.text-xs { color: rgba(255,253,208,0.82) !important; }

/* ── 11. FOOTER — bottom bar visibility ──────────────────────── */
/* Copyright was text-brand-cream/30 → barely visible */
footer .border-t > p:first-child { color: rgba(255,253,208,0.68) !important; }
/* GST number was text-brand-gold/50 */
footer .text-brand-gold\/50 { color: rgba(212,175,55,0.84) !important; }
/* Footer Rate us on Google link */
footer .text-brand-cream\/40 { color: rgba(255,253,208,0.68) !important; }
/* Footer link improvement */
.footer-link { color: rgba(255,253,208,0.72) !important; }
.footer-link:hover { color: #D4AF37 !important; }

/* ── 12. REVIEW CARDS — low-contrast location text ──────────── */
/* text-gray-400 on white = #9CA3AF = 2.85:1 → FAIL WCAG */
.bg-white .text-gray-400,
.bg-brand-cream .text-gray-400,
.review-card .text-gray-400,
section.bg-brand-cream .text-gray-400 { color: #5D6470 !important; } /* 5.7:1 on white */

/* ── 13. INFO CARDS — stronger borders ───────────────────────── */
.info-card { border-color: rgba(212,175,55,0.32) !important; }
/* Factory address sub-labels */
.info-card p.text-xs.text-gray-400 { color: #5D6470 !important; }

/* ── 14. ICON CONTAINERS on dark backgrounds ─────────────────── */
/* bg-brand-gold/10 = rgba(212,175,55,0.1) — icons barely visible */
.bg-\[#0a0000\] .bg-brand-gold\/10,
.bg-\[#0d0000\] .bg-brand-gold\/10,
.bg-\[#0a0000\] .bg-brand-gold\/20,
section[class*="bg-\[#0"] .bg-brand-gold\/10 {
  background: rgba(212,175,55,0.22) !important;
  box-shadow: 0 0 14px rgba(212,175,55,0.14);
}
.bg-brand-red .bg-brand-gold\/20 {
  background: rgba(212,175,55,0.28) !important;
}

/* ── 15. PRODUCT CARDS — tagline & description text ─────────── */
.product-card .font-heading.italic { color: #7C3A0A !important; }
.product-card .text-gray-500 { color: #4B5563 !important; }
/* Feature boxes on light bg */
.bg-brand-cream.rounded-lg p,
.bg-brand-cream.rounded-lg span { color: #374151 !important; }

/* ── 16. HOVER GOLD GLOW — improve effect ─────────────────── */
.hover-gold-glow:hover {
  box-shadow: 0 0 32px rgba(212,175,55,0.32), 0 8px 30px rgba(0,0,0,0.18) !important;
}

/* ── 17. MOBILE MENU — full contrast on dark bg ──────────────── */
#mobileMenu a { color: rgba(255,253,208,0.92) !important; }
#mobileMenu { background: rgba(4,0,0,0.99) !important; }

/* ── 18. TRAD BIDI feature items — border visibility ────────── */
.trad-feature-item { border-color: rgba(212,175,55,0.22) !important; }
.trad-stat-pill { border-color: rgba(212,175,55,0.4) !important; }

/* ── 19. PAYMENT PAGE — copy buttons & UPI labels ───────────── */
.text-brand-cream\/40.hover\:text-brand-gold { color: rgba(255,253,208,0.72) !important; }
.border-white\/20 { border-color: rgba(255,255,255,0.4) !important; }
p.text-xs.text-gray-400 { color: #5D6470; }
p.text-xs.text-gray-500 { color: #4B5563; }

/* ── 20. FOCUS STATES — keyboard navigation visibility ───────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #D4AF37 !important;
  outline-offset: 3px !important;
  border-radius: 3px;
}
.btn-primary:focus-visible,
.btn-gold:focus-visible,
.btn-green:focus-visible {
  box-shadow: 0 0 0 3px rgba(212,175,55,0.5) !important;
}

/* ── 21. GENERAL body text quality on dark bg ────────────────── */
/* Any remaining /60 opacity cream text on dark sections */
section.bg-\[#0a0000\] p,
section.bg-\[#0d0000\] p { color: rgba(255,253,208,0.84); }
/* Allow more specific overrides (gold text etc.) to win */
section.bg-\[#0a0000\] .text-brand-gold,
section.bg-\[#0d0000\] .text-brand-gold,
section.bg-\[#0a0000\] .text-gold-gradient,
section.bg-\[#0d0000\] .text-gold-gradient { color: #D4AF37 !important; }
section.bg-\[#0a0000\] .section-label,
section.bg-\[#0d0000\] .section-label { color: #D4AF37 !important; }

/* ── 22. SECTION HEADINGS — ensure visibility on all backgrounds */
.section-heading { color: inherit; }
.bg-white .section-heading:not([class*="text-"]),
.bg-brand-cream .section-heading:not([class*="text-"]) { color: #5A1A1A; }

/* ── 23. GOLD DIVIDER — slightly stronger ────────────────────── */
.gold-divider {
  background: linear-gradient(90deg, transparent, #D4AF37, transparent) !important;
  opacity: 0.85;
}

/* ── 24. GALLERY empty state ─────────────────────────────────── */
.rounded-2xl.border-dashed { border-color: rgba(212,175,55,0.5) !important; }

/* ── 25. SCROLL TO TOP button visibility ─────────────────────── */
#scrollTop { border-color: rgba(212,175,55,0.7) !important; }
#scrollTop:hover { background: #D4AF37 !important; color: #1a0000 !important; }

/* ============================================================
   TEXT HIGHLIGHT SYSTEM
   Glowing shadows on dark backgrounds · Sharp crisp text
   everywhere · Maximum readability on all sections
   ============================================================ */

/* ── Global rendering — crisp on all screens ─────────────────── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── GOLD TEXT — warm glow highlight ────────────────────────── */
.text-brand-gold,
[class*="text-brand-gold"]:not([class*="\/2"]):not([class*="\/1"]) {
  text-shadow: 0 0 14px rgba(212,175,55,0.45), 0 0 30px rgba(212,175,55,0.18);
}

/* ── GOLD GRADIENT text — enhanced shimmer ───────────────────── */
.text-gold-gradient {
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}

/* ── CREAM/WHITE text on DARK backgrounds — crisp highlight ──── */
.hero-section .text-brand-cream,
.hero-section .text-white,
.page-hero .text-brand-cream,
section[style*="0a0000"] h1,
section[style*="0a0000"] h2,
section[style*="0a0000"] h3,
section.bg-\[#0a0000\] h1,
section.bg-\[#0a0000\] h2,
section.bg-\[#0a0000\] h3,
section.bg-\[#0d0000\] h2,
section.bg-\[#0d0000\] h3 {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.08);
}

/* ── HERO TITLE — maximum presence ──────────────────────────── */
.hero-title .text-brand-cream,
h1.hero-title {
  text-shadow: 0 2px 25px rgba(0,0,0,0.7), 0 0 60px rgba(212,175,55,0.15), 0 4px 8px rgba(0,0,0,0.5) !important;
  color: #FFFFFF !important;
}

/* ── SECTION HEADINGS — dark background ─────────────────────── */
section.bg-\[#0a0000\] .section-heading,
section.bg-\[#0d0000\] .section-heading,
.bg-brand-red .section-heading,
.page-hero .hero-title {
  text-shadow: 0 2px 18px rgba(0,0,0,0.65), 0 0 40px rgba(212,175,55,0.12) !important;
  color: #FFFEF5 !important;
}

/* ── SECTION HEADINGS — light background ────────────────────── */
.bg-white .section-heading.text-brand-red,
section.bg-white .section-heading,
.bg-brand-cream .section-heading.text-brand-red {
  text-shadow: 0 1px 3px rgba(139,0,0,0.2), 0 2px 8px rgba(0,0,0,0.08);
  color: #8B0000 !important;
}

/* ── BRAND RED headings on white — lift effect ───────────────── */
.text-brand-red {
  text-shadow: 0 1px 4px rgba(139,0,0,0.18);
}

/* ── SECTION LABELS on dark bg — gold glow ─────────────────── */
section.bg-\[#0a0000\] .section-label,
section.bg-\[#0d0000\] .section-label,
.bg-brand-red .section-label,
.page-hero .section-label,
.hero-section .section-label {
  color: #F0C84A !important; /* slightly brighter gold for dark bg */
  text-shadow: 0 0 16px rgba(212,175,55,0.6), 0 0 32px rgba(212,175,55,0.25) !important;
  letter-spacing: 0.45em;
}

/* ── NAV LINKS — crisp white highlight ───────────────────────── */
.nav-link {
  text-shadow: 0 1px 6px rgba(0,0,0,0.4) !important;
  font-weight: 500 !important;
}
.nav-link:hover,
.nav-link.active {
  text-shadow: 0 0 14px rgba(212,175,55,0.45), 0 1px 4px rgba(0,0,0,0.3) !important;
}

/* ── BUTTON TEXT — sharp depth ───────────────────────────────── */
.btn-primary,
.btn-gold,
.btn-green {
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  font-weight: 700 !important;
  letter-spacing: 0.13em !important;
}

/* ── PRODUCT CARD headings on white ─────────────────────────── */
.product-card h3.text-brand-red {
  text-shadow: 0 1px 4px rgba(139,0,0,0.2);
  font-weight: 800 !important;
}

/* ── SERVICE CARDS — title glow ─────────────────────────────── */
.service-card-dark h3 {
  text-shadow: 0 0 16px rgba(212,175,55,0.5), 0 1px 8px rgba(0,0,0,0.4) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

/* ── STAT NUMBERS — bold highlight ──────────────────────────── */
.stat-number,
p[data-count],
.font-display.text-3xl[data-count] {
  text-shadow: 0 0 20px rgba(212,175,55,0.35), 0 2px 8px rgba(0,0,0,0.2);
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased;
}
.bg-brand-red .font-display.text-3xl {
  text-shadow: 0 0 24px rgba(212,175,55,0.5), 0 2px 10px rgba(0,0,0,0.3) !important;
}

/* ── FOOTER — brand name highlight ──────────────────────────── */
footer .font-display.text-brand-cream { text-shadow: 0 0 12px rgba(255,253,208,0.3); }
footer .font-display.text-brand-gold  { text-shadow: 0 0 14px rgba(212,175,55,0.45); }

/* ── WHATSAPP link in hero ───────────────────────────────────── */
.text-green-400 { text-shadow: 0 0 10px rgba(74,222,128,0.35); }

/* ── BODY TEXT on dark — gently lifted ───────────────────────── */
section.bg-\[#0a0000\] p:not(.section-label),
section.bg-\[#0d0000\] p:not(.section-label),
.bg-brand-red p {
  color: rgba(255,253,208,0.92) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
/* But keep gold and special-colored text untouched */
section.bg-\[#0a0000\] p.text-brand-gold,
section.bg-\[#0d0000\] p.text-brand-gold,
.bg-brand-red p.text-brand-gold {
  color: #D4AF37 !important;
}

/* ── REVIEW CARDS — reviewer name ───────────────────────────── */
.bg-white .font-display.text-brand-red {
  text-shadow: 0 1px 3px rgba(139,0,0,0.15);
  font-weight: 800 !important;
}

/* ── PAGE INNER HERO h1 ──────────────────────────────────────── */
.page-hero h1.hero-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 50px rgba(212,175,55,0.14) !important;
  font-weight: 900 !important;
}
.page-hero .hero-subtitle {
  color: rgba(255,253,208,0.92) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55) !important;
}

/* ── INFO CARD headings ─────────────────────────────────────── */
.info-card h3.text-brand-red,
.info-card h4.text-brand-red {
  text-shadow: 0 1px 4px rgba(139,0,0,0.18);
  font-weight: 800 !important;
}

/* ── FOUNDER name ────────────────────────────────────────────── */
h3.font-display.text-brand-gold {
  text-shadow: 0 0 18px rgba(212,175,55,0.5), 0 2px 10px rgba(0,0,0,0.4) !important;
}

/* ── MOBILE: reduce heavy shadows on small screens ───────────── */
@media (max-width: 480px) {
  .hero-title  { text-shadow: 0 2px 12px rgba(0,0,0,0.6) !important; }
  .text-brand-gold { text-shadow: 0 0 10px rgba(212,175,55,0.35) !important; }
  .section-heading { text-shadow: none; }
}

/* ============================================================
   FINAL READABILITY HARDENING
   Keeps the existing brand and layout, but removes invisible
   text risks from delayed utility loading and weak contrast.
   ============================================================ */

:root {
  --readable-heading-dark: #FFFFFF;
  --readable-heading-accent: #F5D76E;
  --readable-body-dark: #EAEAEA;
  --readable-muted-dark: #CFCFCF;
  --readable-link-dark: #FFD700;
  --readable-card-title: #FFFFFF;
  --readable-card-copy: #E5E5E5;
  --readable-button-copy: #FFFFFF;
  --readable-heading-light: #5A1A0A;
  --readable-body-light: #2F2A26;
  --readable-muted-light: #5D6470;
  --readable-link-light: #8A6200;
  --readable-shadow-dark: 0 1px 3px rgba(0,0,0,0.4);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--readable-body-light);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: 0.015em;
}

p, li, label, td, th, small, input, select, textarea, button {
  line-height: 1.6;
}

a, button, input, select, textarea {
  -webkit-font-smoothing: antialiased;
}

/* First-party fallbacks for critical brand utility classes */
.bg-brand-red { background: #8B0000 !important; }
.bg-brand-cream { background: #FFF8EC !important; }
.bg-brand-gold { background: #D4AF37 !important; }
.bg-brand-green { background: #0B6623 !important; }
.bg-brand-brown { background: #5A3A1B !important; }
.bg-\[\#0a0000\] { background: #0A0000 !important; }
.bg-\[\#0d0000\] { background: #0D0000 !important; }
.bg-\[\#080000\] { background: #080000 !important; }

.text-brand-cream,
.text-white {
  color: var(--readable-heading-dark) !important;
}

.text-brand-gold {
  color: var(--readable-heading-accent) !important;
}

.text-brand-red {
  color: var(--readable-heading-light) !important;
}

.text-brand-brown {
  color: #6A3C1E !important;
}

.text-gray-400 { color: var(--readable-muted-light) !important; }
.text-gray-500 { color: #4B5563 !important; }
.text-gray-600 { color: #475569 !important; }
.text-gray-700 { color: #374151 !important; }
.text-gray-800 { color: #1F2937 !important; }

.text-brand-cream\/30,
.text-brand-cream\/40,
.text-brand-cream\/50,
.text-brand-cream\/60,
.text-brand-cream\/70,
.text-brand-cream\/80 {
  color: var(--readable-body-dark) !important;
}

.text-brand-gold\/30 { color: #A86F00 !important; }
.text-brand-gold\/40 { color: #BC8815 !important; }
.text-brand-gold\/50,
.text-brand-gold\/60,
.text-brand-gold\/70,
.text-brand-gold\/80 {
  color: var(--readable-heading-accent) !important;
}

.bg-brand-gold\/10 { background: rgba(245,215,110,0.18) !important; }
.bg-brand-gold\/20 { background: rgba(245,215,110,0.24) !important; }
.bg-white\/5 { background: rgba(255,255,255,0.12) !important; }

.border-brand-gold\/10 { border-color: rgba(245,215,110,0.24) !important; }
.border-brand-gold\/20 { border-color: rgba(245,215,110,0.34) !important; }
.border-brand-gold\/30 { border-color: rgba(245,215,110,0.44) !important; }

.text-gold-gradient {
  color: var(--readable-heading-accent) !important;
  filter: none !important;
  text-shadow: var(--readable-shadow-dark) !important;
}

@supports not ((-webkit-background-clip: text) and (-webkit-text-fill-color: transparent)) {
  .text-gold-gradient {
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
  }
}

/* Shared dark surfaces */
:is(
  .hero-section,
  .page-hero,
  .bg-brand-red,
  .bg-\[\#0a0000\],
  .bg-\[\#0d0000\],
  .bg-\[\#080000\],
  #mainNav,
  #mobileMenu,
  .dropdown-menu,
  .glass-dark,
  .modal-box,
  footer,
  .service-card-dark,
  .trad-bidi-section
) {
  color: var(--readable-body-dark);
}

:is(
  .hero-section,
  .page-hero,
  .bg-brand-red,
  .bg-\[\#0a0000\],
  .bg-\[\#0d0000\],
  .bg-\[\#080000\],
  #mainNav,
  #mobileMenu,
  .dropdown-menu,
  .glass-dark,
  .modal-box,
  footer,
  .service-card-dark,
  .trad-bidi-section
) :is(h1, h2, h3, h4, h5, h6, .hero-title, .section-heading, .card-title) {
  color: var(--readable-heading-dark) !important;
  text-shadow: var(--readable-shadow-dark) !important;
}

:is(
  .hero-section,
  .page-hero,
  .bg-brand-red,
  .bg-\[\#0a0000\],
  .bg-\[\#0d0000\],
  .bg-\[\#080000\],
  #mainNav,
  #mobileMenu,
  .dropdown-menu,
  .glass-dark,
  .modal-box,
  footer,
  .service-card-dark,
  .trad-bidi-section
) :is(p, li, label, td, th, small, strong, em, .section-subheading) {
  color: var(--readable-body-dark);
  text-shadow: var(--readable-shadow-dark);
}

:is(
  .hero-section,
  .page-hero,
  .bg-brand-red,
  .bg-\[\#0a0000\],
  .bg-\[\#0d0000\],
  .bg-\[\#080000\],
  #mainNav,
  #mobileMenu,
  .dropdown-menu,
  .glass-dark,
  .modal-box,
  footer,
  .service-card-dark,
  .trad-bidi-section
) :is(.section-label, .text-brand-gold, .stat-number, .stat-card .font-display, .modal-warning-icon) {
  color: var(--readable-heading-accent) !important;
  text-shadow: var(--readable-shadow-dark) !important;
}

:is(
  .hero-section,
  .page-hero,
  .bg-brand-red,
  .bg-\[\#0a0000\],
  .bg-\[\#0d0000\],
  .bg-\[\#080000\],
  #mainNav,
  #mobileMenu,
  .dropdown-menu,
  .glass-dark,
  .modal-box,
  footer,
  .service-card-dark,
  .trad-bidi-section
) a:not(.btn-primary):not(.btn-gold):not(.btn-green):not(.nav-link):not(.dropdown-item):not(.footer-link) {
  color: var(--readable-link-dark);
}

/* Shared light surfaces */
:is(
  .bg-white,
  .bg-brand-cream,
  .product-card,
  .review-card,
  .info-card,
  .stat-card,
  .glass-white,
  .card,
  .bg-green-50
) {
  color: var(--readable-body-light);
}

:is(
  .bg-white,
  .bg-brand-cream,
  .product-card,
  .review-card,
  .info-card,
  .stat-card,
  .glass-white,
  .card,
  .bg-green-50
) :is(h1, h2, h3, h4, h5, h6, .section-heading, .font-display.text-brand-red, .card-title) {
  color: var(--readable-heading-light) !important;
  text-shadow: none !important;
}

:is(
  .bg-white,
  .bg-brand-cream,
  .product-card,
  .review-card,
  .info-card,
  .stat-card,
  .glass-white,
  .card,
  .bg-green-50
) :is(p, li, label, td, th, small, span, .section-subheading) {
  color: var(--readable-body-light);
}

:is(
  .bg-white,
  .bg-brand-cream,
  .product-card,
  .review-card,
  .info-card,
  .stat-card,
  .glass-white,
  .card,
  .bg-green-50
) :is(.text-gray-400, .text-gray-500, .text-gray-600, .stat-label) {
  color: var(--readable-muted-light) !important;
}

.bg-white .section-label,
.bg-brand-cream .section-label,
.product-card .section-label,
.review-card .section-label,
.info-card .section-label,
.stat-card .section-label {
  color: #8A5A00 !important;
  text-shadow: none !important;
}

/* Reduce the over-glow from earlier overrides */
.hero-title,
.section-heading,
.nav-link,
.dropdown-item,
.footer-link,
.text-brand-gold,
.text-brand-cream,
.text-white,
.hero-subtitle,
.section-label {
  filter: none !important;
}

.hero-title,
.page-hero h1.hero-title,
.hero-section .hero-title {
  color: var(--readable-heading-dark) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
}

.hero-subtitle,
.page-hero .hero-subtitle {
  color: var(--readable-body-dark) !important;
  text-shadow: var(--readable-shadow-dark) !important;
}

.section-label {
  font-weight: 700;
}

.section-heading,
.font-display,
.stat-number,
.btn-primary,
.btn-gold,
.btn-green {
  font-weight: 700 !important;
}

.btn-primary,
.btn-green,
.btn-primary:hover,
.btn-green:hover {
  color: var(--readable-button-copy) !important;
}

.btn-gold {
  color: var(--readable-link-dark) !important;
}

.btn-gold:hover {
  color: #1A1000 !important;
}

.nav-link,
.dropdown-item,
#mobileMenu a,
.footer-link,
.breadcrumb-link {
  font-weight: 600 !important;
}

.nav-link,
.dropdown-item,
#mobileMenu a,
.footer-link {
  color: var(--readable-body-dark) !important;
  text-shadow: var(--readable-shadow-dark) !important;
}

.nav-link:hover,
.nav-link.active,
.dropdown-item:hover,
#mobileMenu a:hover,
.footer-link:hover,
.breadcrumb-link:hover {
  color: var(--readable-link-dark) !important;
}

.breadcrumb-link {
  color: #E3BF55 !important;
}

.form-label {
  color: var(--readable-body-dark) !important;
  font-weight: 700;
}

.form-input,
.form-control,
.inp {
  font-weight: 500;
}

.form-input::placeholder,
.inp::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(234,234,234,0.72) !important;
  opacity: 1 !important;
}

.form-input option,
select.form-input option {
  background: #1A0000;
  color: var(--readable-body-dark);
}

table :is(th, td) {
  vertical-align: top;
}

table th {
  font-weight: 700;
}

.product-card h3,
.review-card .font-display,
.info-card h3,
.info-card h4,
.stat-card .stat-number {
  font-weight: 800 !important;
}

.service-card-dark h3,
.service-card-dark p,
.glass-dark p,
.glass p {
  text-shadow: var(--readable-shadow-dark) !important;
}

.service-card-dark p,
.glass-dark p,
.glass p,
.founder-stat-chip span:last-child {
  color: var(--readable-card-copy) !important;
}

.review-card p,
.product-card p,
.info-card p,
.stat-card p {
  text-shadow: none !important;
}

#contactDistrictList,
#dealerDistrictList {
  background: #170202 !important;
  border-color: rgba(245,215,110,0.45) !important;
}

#contactDistrictList li,
#dealerDistrictList li {
  color: var(--readable-body-dark) !important;
}

#pinMsg {
  color: var(--readable-muted-dark) !important;
}

.social-icon,
.whatsapp-btn,
#scrollTop,
.svc-icon,
.w-12.h-12,
.w-14.h-14,
.w-16.h-16 {
  color: inherit;
}

i[class^="fa"],
i[class*=" fa-"],
svg {
  opacity: 1 !important;
}

.social-icon i,
.svc-icon i,
.whatsapp-btn i,
#scrollTop svg,
.nav-link svg,
.dropdown-item svg {
  color: currentColor !important;
  stroke: currentColor;
}

.bg-brand-red .text-brand-cream,
.bg-\[\#0a0000\] .text-brand-cream,
.bg-\[\#0d0000\] .text-brand-cream,
footer .text-brand-cream,
#mainNav .text-brand-cream,
#mobileMenu .text-brand-cream {
  color: var(--readable-body-dark) !important;
}

@media (max-width: 640px) {
  body {
    line-height: 1.7;
  }

  p, li, label, td, th, input, select, textarea, button {
    font-size: max(0.92rem, 14px);
    line-height: 1.7;
  }

  .hero-title,
  .section-heading {
    letter-spacing: 0.02em;
  }

  .nav-link,
  .dropdown-item,
  #mobileMenu a,
  .footer-link {
    font-weight: 600 !important;
  }
}
