/* ============================================================
   Sathik Groups — Handcrafted Luxury Commercial Design System
   ============================================================ */

html {
  font-size: 17.5px;
}

:root {
  --primary-900: #0F172A;
  --primary-800: #1E293B;
  --primary-700: #334155;
  --primary-600: #475569;
  --primary-500: #64748B;
  --primary-300: #CBD5E1;
  --primary-100: #F1F5F9;
  --surface: #FFFFFF;
  --bg-page: #F4F6F4;          /* Harmonious soft sage off-white suited to #BDC4BE */
  --bg-card: #FFFFFF;
  --bg-subtle: #E7ECE7;
  --accent: #C2410C;           /* Warm Rich Terracotta / Bronze */
  --accent-gold: #D97706;      /* Warm Champagne Gold */
  --accent-light: #FFEDD5;
  --accent-hover: #9A3412;
  --border: #DDE2DD;           /* Subtle soft sage border */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);
  --font-brand: 'Cinzel', serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.08);
  --radius-lg: 0.5rem;
  --radius-md: 0.375rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page, #F6F8FA);
  color: var(--primary-900);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  /* prevent horizontal overflow on mobile */
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   BOLD & BIG BRAND INTRO ENTRANCE SCREEN (SATHIK GROUPS)
   ============================================================ */
.brand-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(circle at center, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

.splash-already-shown #brand-splash,
.brand-splash.hide {
  display: none !important;
  opacity: 0;
  transform: translateY(-100%) scale(1.02);
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: splashPop 0.6s ease-out;
}

@keyframes splashPop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.splash-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.splash-crest {
  width: 6.5rem;
  height: 6.5rem;
  background: linear-gradient(135deg, #D97706 0%, #C2410C 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 2.75rem;
  font-family: var(--font-brand);
  letter-spacing: -0.02em;
  box-shadow: 0 20px 40px rgba(194, 65, 12, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.splash-title {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-brand);
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.splash-divider {
  width: 8rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D97706, transparent);
  margin: 0.5rem 0;
}

.splash-sub {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #CBD5E1;
}

.splash-progress-bar {
  width: 18rem;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}

.splash-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D97706, #C2410C);
  border-radius: 2px;
  animation: splashFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashFill {
  0% { width: 0%; }
  100% { width: 100%; }
}


/* Layout Container */
.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 2.25rem 0;
}

.section-sm {
  padding: 1.5rem 0;
}

.luxury-section-divider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(189, 196, 190, 0.4) 20%, rgba(189, 196, 190, 0.8) 50%, rgba(189, 196, 190, 0.4) 80%, transparent 100%);
  margin: 0.75rem auto;
}

.luxury-section-divider::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  color: #78857B;
  background: var(--bg-page, #F4F6F4);
  padding: 0 0.5rem;
}

.bg-surface {
  background-color: var(--surface, #ffffff);
}

.bg-dark {
  background-color: var(--primary-900);
  color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3 {
  color: #ffffff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2F4136;
  background: rgba(189, 196, 190, 0.35);
  border: 1px solid rgba(189, 196, 190, 0.6);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
}

.section-desc {
  color: var(--primary-500);
  font-size: 1.0625rem;
  max-width: 42rem;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-sans);
  /* minimum 44px touch target for mobile */
  min-height: 44px;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
  position: relative;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
  color: #ffffff !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #334155 0%, #1E293B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
  color: #ffffff !important;
}

.btn-outline {
  border: 1px solid #CBD5E1;
  color: #0F172A !important;
  background: #F1F5F9;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  border-color: #0F172A;
  color: #ffffff !important;
  background: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
  color: #ffffff !important;
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Navbar — Sage Gray Palette (#BDC4BE) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #BDC4BE;
  background: rgba(189, 196, 190, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  height: 4.5rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar .container,
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.12));
  transition: transform 0.25s ease;
}

.nav-brand:hover .brand-logo-icon {
  transform: scale(1.05);
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #FFFFFF;
  border: 1.5px solid #D97706;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.brand-name {
  font-weight: 850;
  font-size: 1.25rem;
  letter-spacing: 0.175em;
  font-family: var(--font-brand);
  color: #0F172A;
  line-height: 1.15;
  white-space: nowrap;
  display: block;
  text-transform: uppercase;
  width: 100%;
}

.brand-sub {
  font-size: 0.59rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #B45309;
  margin-top: 0.15rem;
  white-space: nowrap;
  display: block;
  width: 100%;
}

/* Footer Brand Typography Stretch (Single-line alignment with subtitle below) */
.footer-brand .brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  min-width: 0;
}

.footer-brand .brand-name {
  font-weight: 850;
  font-size: 1.42rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff !important;
  line-height: 1.15;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.footer-brand .brand-sub {
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  color: #F59E0B !important;
  margin-top: 0.15rem;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 650;
  color: #1E293B;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #C2410C;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: #C2410C;
  box-shadow: 0 0 8px rgba(194, 65, 12, 0.5);
  border-radius: 2px;
}

.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #0F172A;
  color: #FFFFFF !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-md, 6px);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.nav-phone-btn:hover {
  background-color: var(--accent, #C2410C);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.35);
}

.nav-phone-btn svg {
  flex-shrink: 0;
}

.nav-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #15803d;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-md);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-whatsapp-link:hover {
  background: rgba(22, 163, 74, 0.2);
  transform: translateY(-1px);
}

.nav-icon-btn {
  color: #1E293B;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
}

.nav-icon-btn:hover {
  background: rgba(15, 23, 42, 0.08);
  color: #C2410C;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #C2410C;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #BDC4BE;
}

.mobile-only-actions {
  display: none !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: #0F172A;
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  min-width: 14rem;
  padding: 0.5rem;
  display: none;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #F1F5F9;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #F59E0B;
}

/* Footer */
.footer {
  background-color: var(--primary-900);
  color: #ffffff;
  padding-top: 4.5rem;
  border-top: 1px solid var(--primary-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--primary-300);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-link:hover {
  color: var(--accent) !important;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid var(--primary-800);
  padding: 1.75rem 0;
  font-size: 0.875rem;
  color: var(--primary-500);
}

/* Footer Social Media Buttons in Bottom Navbar (Pure Brand Icons) */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  color: #f1f5f9;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.social-btn svg {
  width: 23px;
  height: 23px;
  display: block;
  transition: transform 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-btn:hover svg {
  transform: scale(1.08);
}

.social-btn.social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.social-btn.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}

.social-btn.social-insta:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

.social-btn.social-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.show {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 32rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 0.375rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  background-color: #ffffff;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Alerts & Badges */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.alert-success { background: #DCFCE7; color: #166534; }
.alert-danger { background: #FEE2E2; color: #991B1B; }
.alert-info { background: #E0F2FE; color: #075985; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 1rem;
  text-transform: uppercase;
}

.badge-new { background-color: var(--accent-light); color: var(--accent); }
.badge-featured { background-color: var(--primary-100); color: var(--primary-900); }


/* ============================================================
   FLOATING ACTION BUTTONS (WHATSAPP & QUICK ENQUIRY)
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 995;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, background-color 0.2s ease;
  animation: whatsappPulse 3.5s infinite ease-in-out;
  text-decoration: none;
}

.whatsapp-fab:hover {
  background-color: #20BA56;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab:active {
  transform: translateY(-1px) scale(0.96);
}

.whatsapp-fab-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.18);
  }
}



/* ============================================================
   GLASSMORPHISM ENQUIRY MODAL POPUP
   ============================================================ */
.quick-enquiry-backdrop {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quick-enquiry-card {
  max-width: 32rem;
  width: 100%;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.25);
  border: 1px solid var(--border);
  animation: modalZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes modalZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.quick-enquiry-header {
  padding: 1.5rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.quick-enquiry-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.25rem;
}

.quick-enquiry-subtitle {
  font-size: 0.84rem;
  color: var(--primary-500);
  line-height: 1.45;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary-500);
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: #F97316;
}

.quick-enquiry-body {
  padding: 1.5rem 1.75rem 1.75rem;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Orange Focus State for Form Fields */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #F97316 !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-input.input-error,
.form-textarea.input-error {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.field-error {
  color: #DC2626;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.required-star {
  color: #F97316;
  font-weight: 700;
  margin-left: 0.15rem;
}

.optional-tag {
  color: var(--primary-500);
  font-weight: 400;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

/* Custom Radio Buttons */
.contact-method-radios {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.375rem;
  flex-wrap: wrap;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
  flex: 1;
  min-width: 140px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-800);
  user-select: none;
}

.radio-card input[type="radio"] {
  accent-color: #F97316;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.radio-card:has(input:checked) {
  border-color: #F97316;
  background: #FFF7ED;
  color: #C2410C;
}

/* Form Action Buttons */
.form-actions-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Spinner inside button */
.btn-spinner {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Success Popup Modal */
.success-popup-card {
  text-align: center;
  padding: 2.75rem 2rem 2.25rem;
  max-width: 26rem;
  width: 100%;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.25);
  animation: modalZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon-badge {
  width: 4.5rem;
  height: 4.5rem;
  background: #DCFCE7;
  color: #166534;
  font-size: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 16px rgba(22, 101, 52, 0.15);
}

.success-popup-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.625rem;
}

.success-popup-message {
  color: var(--primary-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* ── Shopping / Quote Cart styles ── */
.add-to-quote-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border, #e2e8f0);
  color: var(--primary-600, #0284c7);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  line-height: 1;
}

.add-to-quote-btn:hover {
  background: var(--primary-600, #0284c7);
  color: #ffffff;
  border-color: var(--primary-600, #0284c7);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 14px rgba(2, 132, 199, 0.35);
}

.cart-badge {
  background: var(--accent, #ea580c);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 12px;
  line-height: 1;
  min-width: 20px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #ffffff;
}

.nav-actions-desktop .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.65rem;
  padding: 0.1rem 0.3rem;
  min-width: 15px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-light, #f8fafc);
  padding: 0.25rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-900);
  margin: 0 0 0.2rem 0;
}

.cart-item-sku {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--primary-500);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.2s;
}

.cart-item-remove:hover {
  opacity: 0.7;
}

/* Floating cart toast notification */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}


