/* ==========================================================================
   PALACKATHOTTIYIL COLOUR HOUSE — CORPORATE PAINT BRAND PORTAL
   Inspired by: Kansai Nerolac, Indigo Paints, Berger Paints
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #0e2038;
  --primary-blue: #134074;
  --accent-red: #e31b23;
  --accent-red-hover: #b8141b;
  --accent-yellow: #fbb024;
  --accent-gold: #d97706;
  --accent-teal: #0284c7;
  --accent-green: #10b981;

  /* Neutrals & Surfaces */
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --surface-alt: #f1f5f9;
  --surface-dark: #0f172a;

  /* Text Colors */
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-brand: rgba(227, 27, 35, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 32, 56, 0.08);
  --shadow-lg: 0 20px 40px rgba(14, 32, 56, 0.12);
  --shadow-glow: 0 0 30px rgba(227, 27, 35, 0.15);
  --shadow-yellow: 0 0 25px rgba(251, 176, 36, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Font Families */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Accessible utility for SEO & screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1280px, 92%);
  margin-inline: auto;
}

/* ================= TOP UTILITY BAR (BERGER/NEROLAC STYLE) ================= */
.top-utility-bar {
  background: var(--primary-navy);
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-links-left,
.top-links-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-util-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 500;
}

.top-util-link:hover {
  color: var(--accent-yellow);
}

.badge-express {
  background: linear-gradient(135deg, var(--accent-red), #ff4b55);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.branch-pill {
  color: #94a3b8;
  font-size: 12px;
}

.branch-pill b {
  color: #f1f5f9;
}

/* ================= MAIN CORPORATE NAVBAR ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Brand Identity Lockup */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(251, 176, 36, 0.65);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  padding: 4px;
}

.brand-logo-badge .brand-logo-img,
.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(251, 176, 36, 0.55));
  transition: transform 0.3s ease;
}

.brand-lockup:hover .brand-logo-badge {
  transform: scale(1.08);
  border-color: var(--accent-red);
  box-shadow: 0 6px 22px rgba(227, 27, 35, 0.45);
}

.brand-lockup:hover .brand-logo-badge .brand-logo-img {
  transform: scale(1.12) rotate(-6deg);
}

.brand-shield {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent-red), #9e0e15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.35);
  position: relative;
  overflow: hidden;
}

.brand-shield::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: rotate(35deg);
  animation: shineShield 4s infinite;
}

@keyframes shineShield {
  0% {
    transform: translate(-100%, -100%) rotate(35deg);
  }

  20%,
  100% {
    transform: translate(100%, 100%) rotate(35deg);
  }
}

.brand-shield .monogram {
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}

.brand-shield .since-micro {
  font-size: 8px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-name-primary {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-navy);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1px;
  transition: color 0.2s ease;
}

.brand-name-tagline {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--accent-red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.05;
  transition: transform 0.2s ease;
}

.brand-lockup:hover .brand-name-primary {
  color: var(--text-dark);
}

.brand-lockup:hover .brand-name-tagline {
  transform: translateX(2px);
}

.brand-name-tagline span.dot {
  width: 5px;
  height: 5px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

/* Nav Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red);
  background: var(--surface-alt);
}

.nav-link .nav-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown Menus */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: -40px;
  width: 680px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-red);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border-subtle);
}

.mega-link-list {
  list-style: none;
}

.mega-link-list li {
  margin-bottom: 8px;
}

.mega-link {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.mega-link:hover {
  color: var(--primary-navy);
  transform: translateX(4px);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-red), #c8131a);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
  transition: all 0.25s ease;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
  color: #ffffff;
}

.btn-header-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--primary-navy);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-header-outline:hover {
  border-color: var(--primary-navy);
  background: var(--surface-alt);
}

/* ================= MOBILE NAVIGATION & TOGGLE ================= */
.mobile-toggle {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  border-color: var(--accent-red);
  background: rgba(227, 27, 35, 0.05);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2.2px;
  background: var(--primary-navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
  background: var(--accent-red);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
  background: var(--accent-red);
}

.mobile-quick-call {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  font-size: 19px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
  flex-shrink: 0;
}

.mobile-quick-call:hover,
.mobile-quick-call:active {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  transform: scale(1.05);
}

/* Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 999;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--surface-alt);
  flex-shrink: 0;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-close {
  background: #ffffff;
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: var(--accent-red);
  color: #ffffff;
  border-color: var(--accent-red);
  transform: rotate(90deg);
}

.mobile-nav-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 15.5px;
  transition: all 0.2s ease;
  background: transparent;
  border-left: 3px solid transparent;
}

.mobile-nav-link .nav-icon {
  font-size: 20px;
  width: 30px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-link .nav-text {
  flex: 1;
}

.mobile-nav-link .nav-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(227, 27, 35, 0.05);
  color: var(--accent-red);
}

.mobile-nav-link:hover .nav-arrow {
  transform: translateX(4px);
  color: var(--accent-red);
}

.mobile-nav-link.active {
  background: linear-gradient(90deg, rgba(227, 27, 35, 0.10), rgba(227, 27, 35, 0.02));
  color: var(--accent-red);
  font-weight: 800;
  border-left-color: var(--accent-red);
}

.mobile-nav-link.active .nav-arrow {
  color: var(--accent-red);
}

.mobile-nav-cta-section {
  padding: 20px 0 14px;
  border-top: 1px solid var(--border-light);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}

.mobile-drawer-btn.mobile-call-btn {
  background: var(--surface-alt);
  color: var(--primary-navy);
  border: 1.5px solid var(--border-light);
}

.mobile-drawer-btn.mobile-call-btn:hover {
  background: #ffffff;
  border-color: var(--primary-navy);
}

.mobile-drawer-btn.mobile-whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.mobile-drawer-btn.mobile-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.mobile-nav-branches {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.mobile-branches-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mobile-branches-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mobile-branches-pills span {
  display: inline-block;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary-navy);
}

body.mobile-nav-open {
  overflow: hidden !important;
}

/* ================= HERO CAROUSEL / SHOWCASE BANNER ================= */
.hero-portal-section {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(248, 250, 252, 0.90) 0%, rgba(241, 245, 249, 0.86) 50%, rgba(226, 232, 240, 0.92) 100%),
    url('assets/room.jpg') center center / cover no-repeat;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-portal-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 1;
}

/* Interactive Mouse-Follow Color Bubbles Canvas */
.hero-bubble-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* ================= HERO ANIMATED LOGO SHOWCASE STAGE ================= */
.hero-logo-showcase-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 10px;
}

.logo-animation-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Dynamic ambient pulsing aura */
.logo-ambient-aura {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.22) 0%, rgba(212, 175, 55, 0.26) 42%, rgba(0, 180, 216, 0.12) 65%, transparent 80%);
  filter: blur(35px);
  animation: auraPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes auraPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.65;
    filter: blur(28px);
  }
  100% {
    transform: scale(1.16);
    opacity: 0.95;
    filter: blur(42px);
  }
}

/* Floating "Since 1997" Badge at Top Right of Logo */
.logo-since-badge {
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, #fffdfa 60%, #fbf5e6 100%);
  border: 1.5px solid #d4af37;
  color: #8c5b0d;
  padding: 6px 14px;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 
    0 8px 24px rgba(212, 175, 55, 0.35), 
    0 2px 8px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: badgeFloatingGently 3.8s ease-in-out infinite alternate;
  white-space: nowrap;
}

.logo-since-badge .since-icon {
  color: #d4af37;
  font-size: 12px;
}

@keyframes badgeFloatingGently {
  0% {
    transform: translateY(0px) rotate(2deg);
  }
  100% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

/* Outer Orbital Ring with revolving color dots */
.logo-orbit-ring.outer-orbit {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(212, 175, 55, 0.1);
  animation: spinCounterClockwise 24s linear infinite;
  z-index: 1;
}

.orbit-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  border: 2px solid #ffffff;
}

.dot-crimson {
  top: -7px;
  left: calc(50% - 6.5px);
  background: #e31b23;
  color: #e31b23;
}

.dot-gold {
  right: -7px;
  top: calc(50% - 6.5px);
  background: #d4af37;
  color: #d4af37;
}

.dot-teal {
  bottom: -7px;
  left: calc(50% - 6.5px);
  background: #00b4d8;
  color: #00b4d8;
}

.dot-indigo {
  left: -7px;
  top: calc(50% - 6.5px);
  background: #6366f1;
  color: #6366f1;
}

/* Middle Orbital Ring (Dashed Gold/Crimson) */
.logo-orbit-ring.middle-orbit {
  position: absolute;
  width: 285px;
  height: 285px;
  border-radius: 50%;
  border: 2px dashed rgba(227, 27, 35, 0.5);
  animation: spinClockwise 20s linear infinite;
  z-index: 1;
}

/* Inner Orbital Ring (Fine Gold Ring) */
.logo-orbit-ring.inner-orbit {
  position: absolute;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  box-shadow: inset 0 0 16px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

@keyframes spinClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Central Luxury Medallion */
.logo-center-medallion {
  position: relative;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1a2233 0%, #0c121e 65%, #05080e 100%);
  border: 3.5px solid #d4af37;
  box-shadow: 
    0 16px 40px rgba(10, 22, 40, 0.4), 
    0 0 28px rgba(212, 175, 55, 0.42), 
    inset 0 0 20px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
  animation: medallionLevitate 4.5s ease-in-out infinite alternate;
}

@keyframes medallionLevitate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.8deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Light gleam reflection across medallion */
.medallion-gleam {
  position: absolute;
  top: -60%;
  left: -70%;
  width: 55%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(32deg);
  animation: lightGleamSweep 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes lightGleamSweep {
  0%, 55% {
    transform: translateX(-120%) rotate(32deg);
  }
  75% {
    transform: translateX(380%) rotate(32deg);
  }
  100% {
    transform: translateX(380%) rotate(32deg);
  }
}

/* Center Animated Leaf Logo Artwork */
.logo-animated-leaf {
  width: 145px;
  height: 145px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: leafGentleBreathing 3.6s ease-in-out infinite alternate;
}

@keyframes leafGentleBreathing {
  0% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1.06);
  }
}

.logo-center-medallion:hover .logo-animated-leaf {
  transform: scale(1.14) rotate(4deg);
}

/* Brand Identity Plaque Below Emblem */
.logo-stage-brand-card {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-stage-est-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: #996515;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.logo-stage-est-badge .star-icon {
  color: #d4af37;
  font-size: 12px;
}

.logo-stage-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 2px;
}

.logo-stage-subtitle {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: var(--accent-red);
  letter-spacing: 1.5px;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 4px 20px rgba(227, 27, 35, 0.22);
}

.logo-stage-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 18px;
}

.logo-stage-action-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stage-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stage-pill-btn.visualizer-pill {
  background: var(--accent-red);
  color: #ffffff;
}

.stage-pill-btn.visualizer-pill:hover {
  background: #c8161d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 27, 35, 0.3);
}

.stage-pill-btn.calculator-pill {
  background: #ffffff;
  color: var(--primary-navy);
  border: 1px solid var(--border-light);
}

.stage-pill-btn.calculator-pill:hover {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 32, 56, 0.15);
}

.stage-pill-btn.brands-pill {
  background: rgba(212, 175, 55, 0.15);
  color: #8c5b05;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.stage-pill-btn.brands-pill:hover {
  background: #d4af37;
  color: #0b1523;
  transform: translateY(-2px);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.hero-portal-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--primary-navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-portal-title span.highlight-red {
  color: var(--accent-red);
  position: relative;
}

.hero-portal-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-corporate-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-red);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(227, 27, 35, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-corporate-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 27, 35, 0.45);
}

.btn-corporate-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--primary-navy);
  border: 2px solid var(--border-light);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-corporate-secondary:hover {
  border-color: var(--primary-navy);
  background: var(--surface-alt);
  transform: translateY(-2px);
}

/* Hero Painter on Ladder Showcase */
.hero-painter-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.painter-stage-wrap {
  position: relative;
  display: inline-block;
}

.painter-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.12) 0%, rgba(251, 176, 36, 0.16) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.painter-ladder-cutout {
  position: relative;
  z-index: 1;
  max-height: 560px;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(14, 32, 56, 0.22));
  transition: transform 0.4s ease;
}

.painter-stage-wrap:hover .painter-ladder-cutout {
  transform: scale(1.03);
}

.painter-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatBadge 3.5s ease-in-out infinite alternate;
}

.painter-floating-badge.badge-1 {
  top: 60px;
  left: -24px;
}

.painter-floating-badge.badge-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: -1.75s;
}

.painter-floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.painter-floating-badge b {
  display: block;
  font-size: 14px;
  color: var(--primary-navy);
  line-height: 1.2;
}

.painter-floating-badge span {
  font-size: 11.5px;
  color: var(--text-muted);
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

@media (max-width: 992px) {
  .painter-floating-badge.badge-1 {
    left: 10px;
  }

  .painter-floating-badge.badge-2 {
    right: 10px;
  }

  .painter-img {
    height: 420px;
  }
}

/* Dedicated Calculator Section (Berger Style) */
.calculator-section-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .calculator-section-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* Hero Quick Estimate Floating Card (Berger Style) */
.hero-estimate-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.estimate-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent-yellow);
  color: var(--primary-navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(251, 176, 36, 0.4);
}

.estimate-card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.estimate-card-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.estimate-form-group {
  margin-bottom: 15px;
}

.estimate-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.estimate-select,
.estimate-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--bg-soft);
  color: var(--text-dark);
  transition: all 0.2s ease;
  outline: none;
}

.estimate-select:focus,
.estimate-input:focus {
  border-color: var(--accent-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}

.estimate-result-box {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent-green);
}

.estimate-result-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-heading);
}

.estimate-result-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Brand Partners Infinite Logo Marquee */
.brand-ticker-section {
  background: #ffffff;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.marquee-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.ticker-label {
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-label::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(227, 27, 35, 0.6);
}

.marquee-sub-badge {
  font-size: 12px;
  font-weight: 700;
  color: #166534;
  background: #dcfce7;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid #bbf7d0;
}

.brand-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: brandMarqueeScroll 30s linear infinite;
  padding: 8px 0;
}

.brand-marquee-track:hover {
  animation-play-state: paused;
}

.brand-marquee-item {
  flex-shrink: 0;
}

.brand-logo-card {
  height: 68px;
  min-width: 185px;
  padding: 10px 24px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 27, 35, 0.35);
  box-shadow: 0 12px 28px rgba(227, 27, 35, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04);
}

.brand-logo-card .brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  display: block;
}

@keyframes brandMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= 4 PILLARS & SERVICES (BERGER EXPRESS STYLE) ================= */
.section-corporate {
  padding: 80px 0;
}

.section-bg-soft {
  background: var(--bg-soft);
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.kicker-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-red);
  background: rgba(227, 27, 35, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* 4-Step Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
}

.process-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent-red);
  border: 1px solid var(--border-light);
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================= INTERACTIVE TWO-COLOUR COMBINATION FINDER ================= */
.visualizer-card-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.visualizer-top-bar {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.visualizer-status-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visualizer-top-bar h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.visualizer-hint-badge {
  font-size: 12.5px;
  color: #cbd5e1;
  font-weight: 500;
}

.visualizer-action-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-vis-tool {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-vis-tool:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.visualizer-body-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.visualizer-canvas-panel {
  padding: 28px;
  background: #0f172a;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Photorealistic Room Stage */
.room-interactive-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1376 / 768;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  background: #1e293b;
  cursor: crosshair;
}

.room-layer-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.room-wall-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: multiply;
  opacity: 0.90;
}

.wall-interactive-polygon {
  cursor: pointer;
  transition: fill 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.wall-interactive-polygon:hover {
  filter: brightness(1.08) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.room-layer-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  pointer-events: none;
}

/* Floating Wall Labels */
.wall-floating-label {
  position: absolute;
  z-index: 4;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wall-floating-label.label-left {
  top: 18%;
  left: 14%;
}

.wall-floating-label.label-right {
  top: 18%;
  right: 16%;
}

.wall-floating-label:hover {
  transform: scale(1.06) translateY(-3px);
  background: rgba(227, 27, 35, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.wall-floating-label .wall-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fbbf24;
}

.wall-floating-label .wall-current-shade {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.wall-floating-label .wall-click-cta {
  font-size: 11px;
  color: #e2e8f0;
  font-weight: 600;
  margin-top: 2px;
}

/* Mouse Follower Brush Droplet */
.brush-cursor-follower {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  transform: translate(14px, 14px);
  display: none;
  align-items: center;
  gap: 4px;
}

.brush-cursor-follower .brush-icon {
  font-size: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.brush-cursor-follower .brush-droplet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px currentColor;
}

/* Applied Palette Bar */
.applied-palette-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.applied-wall-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: inline-block;
  transition: background-color 0.3s ease;
}

.applied-wall-stat small {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #94a3b8;
}

.applied-wall-stat strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.applied-wall-divider {
  color: #fbbf24;
  font-size: 14px;
}

.btn-share-palette {
  background: var(--accent-red);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-share-palette:hover {
  background: #c8161d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 27, 35, 0.4);
}

/* Right Controls Panel */
.visualizer-controls-panel {
  padding: 28px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Active Brush Dipper Card */
.active-brush-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.brush-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.brush-dipper-icon-box {
  position: relative;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.brush-large-emoji {
  font-size: 26px;
}

.brush-active-paint-drop {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.brush-kicker {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--accent-red);
  display: block;
}

.brush-shade-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 2px 0;
}

.brush-shade-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shade-hex {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
}

.shade-tag {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.brush-instructions {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
}

/* Swatch Grid */
.paint-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.swatch-item-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.swatch-item-btn:hover,
.swatch-item-btn.active {
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(227, 27, 35, 0.15);
}

.swatch-pill-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.swatch-label-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65px;
}

/* Custom Color Dropper Card */
.custom-dropper-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.dropper-left label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}

.dropper-left small {
  font-size: 11px;
  color: var(--text-muted);
}

.dropper-input-wrapper input[type="color"] {
  width: 44px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}

/* Designer Pair Pills */
.designer-pairs-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.designer-pairs-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.designer-pair-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.designer-pair-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.designer-pair-btn:hover {
  border-color: var(--accent-red);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pair-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* ================= PRODUCT CATEGORY GRID (INDIGO & BERGER STYLE) ================= */
.category-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.cat-filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227, 27, 35, 0.3);
}

.product-thumb-holder {
  height: 200px;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb-holder img {
  transform: scale(1.05);
}

.product-cat-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 32, 56, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-warranty-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--accent-yellow);
  color: var(--primary-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-info-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--text-dark);
}

.product-spec-row b {
  color: var(--primary-navy);
}

.btn-product-inquire {
  display: block;
  text-align: center;
  background: var(--surface-alt);
  color: var(--primary-navy);
  border: 1px solid var(--border-light);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-product-inquire:hover {
  background: var(--accent-red);
  color: #ffffff;
  border-color: var(--accent-red);
}

/* ================= BRANCH & STORE LOCATOR ================= */
.branch-grid-corporate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.store-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-md);
}

.store-card.featured::before {
  content: 'FLAGSHIP STORE';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-bottom-left-radius: 8px;
}

.store-city-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.store-hours {
  font-size: 12.5px;
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.store-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.store-phone-link {
  color: var(--primary-navy);
  font-weight: 700;
}

.store-phone-link:hover {
  color: var(--accent-red);
}

.store-btn-group {
  display: flex;
  gap: 10px;
}

.btn-store-call {
  flex: 1;
  text-align: center;
  background: var(--accent-red);
  color: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-store-call:hover {
  background: var(--accent-red-hover);
}

.btn-store-map {
  flex: 1;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-store-map:hover {
  background: var(--surface-alt);
  border-color: var(--primary-navy);
}

/* ================= STICKY ACTION DOCK (INDIGO STYLE) ================= */
.corp-sticky-dock {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dock-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.dock-btn:hover {
  transform: translateX(-4px);
}

.dock-btn.whatsapp-dock {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.dock-btn.calc-dock {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

/* ================= CORPORATE FOOTER ================= */
.corp-footer {
  background: var(--primary-navy);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 4px solid var(--accent-red);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list a {
  font-size: 13.5px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--accent-yellow);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* ================= PAGE HERO / BREADCRUMB COMMON ================= */
.page-hero-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #173254 100%);
  color: #ffffff;
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.page-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--accent-yellow);
}

.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ================= ABOUT US PAGE STYLES ================= */
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.stat-strip-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-strip-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
}

.stat-strip-card .stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-strip-card .stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-strip-card .stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.story-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.story-text-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid #ffffff;
}

.story-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.story-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 32, 56, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-yellow);
  max-width: 320px;
}

.story-badge-floating h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--accent-yellow);
}

.story-badge-floating p {
  font-size: 12.5px;
  line-height: 1.4;
  color: #e2e8f0;
  margin: 0;
}

/* Timeline */
.timeline-section-wrap {
  position: relative;
  margin-top: 48px;
  padding: 20px 0;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow), var(--accent-blue));
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-md);
}

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px var(--accent-red);
  margin-bottom: 16px;
}

.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Pillars & Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.value-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.value-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.value-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(14, 32, 56, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--primary-navy);
}

.value-box h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.value-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ================= CONTACT PAGE STYLES ================= */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.contact-quick-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
}

.contact-quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(227, 27, 35, 0.08);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-quick-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.contact-quick-icon.hours {
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-blue);
}

.contact-quick-card h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-quick-card .quick-main {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-quick-card .quick-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
}

.form-group-field label span {
  color: var(--accent-red);
}

.form-group-field input,
.form-group-field select,
.form-group-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.form-group-field input:focus,
.form-group-field select:focus,
.form-group-field textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.12);
}

.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-red), #b91c1c);
  color: #ffffff;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.35);
}

.form-notice {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* FAQ Accordions */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-card:hover {
  border-color: var(--accent-blue);
}

.faq-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-card h4::before {
  content: 'Q';
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 30px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .hero-portal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visualizer-body-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-grid-corporate {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-split-grid {
    grid-template-columns: 1fr;
  }

  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-track::before {
    display: none;
  }

  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .stats-strip-grid {
    grid-template-columns: 1fr;
  }

  .timeline-track {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
  }
  .top-utility-bar {
    display: none;
  }

  .nav-menu,
  .btn-header-outline,
  .btn-header-cta {
    display: none !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .mobile-quick-call {
    display: inline-flex !important;
  }

  .main-header {
    height: auto;
  }

  .nav-container {
    height: 72px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-logo-badge {
    width: 44px;
    height: 44px;
    padding: 3px;
  }

  .brand-logo-badge .brand-logo-img,
  .brand-logo-img {
    width: 34px;
    height: 34px;
  }

  .brand-name-primary {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .brand-name-tagline {
    font-size: 18px;
    letter-spacing: 0.3px;
  }

  .hero-portal-title {
    font-size: 36px;
  }

  .logo-animation-wrapper {
    width: 290px;
    height: 290px;
  }

  .logo-since-badge {
    top: 10px;
    right: 8px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo-ambient-aura {
    width: 270px;
    height: 270px;
  }

  .logo-orbit-ring.outer-orbit {
    width: 270px;
    height: 270px;
  }

  .logo-orbit-ring.middle-orbit {
    width: 220px;
    height: 220px;
  }

  .logo-orbit-ring.inner-orbit {
    width: 180px;
    height: 180px;
  }

  .logo-center-medallion {
    width: 150px;
    height: 150px;
  }

  .logo-animated-leaf {
    width: 110px;
    height: 110px;
  }

  .logo-stage-title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .logo-stage-subtitle {
    font-size: 38px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .visualizer-canvas-panel {
    padding: 16px;
  }

  .visualizer-controls-panel {
    padding: 20px;
  }

  .paint-swatch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wall-floating-label {
    padding: 4px 10px;
  }

  .wall-floating-label .wall-name {
    font-size: 9.5px;
  }

  .wall-floating-label .wall-current-shade {
    font-size: 11px;
  }

  .wall-floating-label .wall-click-cta {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .corp-sticky-dock {
    bottom: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-logo-badge {
    width: 38px;
    height: 38px;
    padding: 2px;
  }

  .brand-logo-badge .brand-logo-img,
  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .brand-name-primary {
    font-size: 11.5px;
    letter-spacing: 0.3px;
  }

  .brand-name-tagline {
    font-size: 16px;
    letter-spacing: 0.2px;
  }

  .logo-stage-title {
    font-size: 17px;
    letter-spacing: 1.2px;
  }

  .logo-stage-subtitle {
    font-size: 32px;
  }

  .logo-since-badge {
    top: 6px;
    right: 4px;
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-quick-call {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}