/* ==========================================================================
   Star Paints & Hardware — Clean, Professional Master Design System
   Authorized Berger Paints Exclusive Showroom
   Pattambi (Main Branch) | Karukaputhur | Koottupatha | Star Gallery
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --emerald-main: #046A38;
  --emerald-dark: #024825;
  --emerald-hover: #03532c;
  --emerald-light: #E8F5EE;
  --emerald-accent: #00A86B;
  
  --gold-accent: #D97706;
  --gold-light: #FEF3C7;
  
  --red-accent: #DC2626;
  --red-light: #FEE2E2;
  
  /* Neutral Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-dark: #0F172A;
  
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  
  --border-subtle: #E2E8F0;
  --border-strong: #CBD5E1;
  
  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Reusable Badges */
.badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background-color: var(--emerald-light);
  color: var(--emerald-main);
}

.badge-gold {
  background-color: var(--gold-light);
  color: var(--gold-accent);
}

.badge-red {
  background-color: var(--red-light);
  color: var(--red-accent);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-outer {
  position: fixed;
  top: 1.2rem;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top var(--transition-normal);
}

.header-outer.scrolled {
  top: 0.6rem;
}

.navbar-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-main);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--emerald-main);
  border-radius: 2px;
}

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

.btn-nav-call {
  background-color: transparent;
  color: var(--emerald-main);
  border: 1.5px solid var(--emerald-main);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-nav-call:hover {
  background-color: var(--emerald-light);
}

.btn-nav-wa {
  background-color: var(--emerald-main);
  color: var(--text-white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-nav-wa:hover {
  background-color: var(--emerald-hover);
}

/* Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: var(--emerald-light);
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.mobile-toggle:active .hamburger-icon {
  transform: scale(0.92);
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--emerald-main);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Mobile Drawer (Smooth GPU Accelerated Spring Slide-In) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  z-index: 1050;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.mobile-drawer-close:hover {
  transform: rotate(90deg);
  background-color: var(--emerald-light);
  color: var(--emerald-main);
}

/* Staggered Cascade Menu Item Animations */
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-block;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(1) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(2) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(3) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(4) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.25s;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(5) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.mobile-drawer.open .mobile-nav-links li:nth-child(6) .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--emerald-main);
  transform: translateX(4px);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.38s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.38s;
}

.mobile-drawer.open .mobile-drawer-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #0F172A;
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: #FFD700;
  display: block;
  font-weight: 800;
  font-size: 3.8rem;
  letter-spacing: -0.025em;
  margin-top: 0.3rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin: 0 auto 2.5rem;
  max-width: 720px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--emerald-main);
  color: #FFFFFF;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(4, 106, 56, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.btn-hero-primary:hover {
  background-color: var(--emerald-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--emerald-main);
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.btn-hero-secondary:hover {
  background-color: #FFFFFF;
  color: var(--emerald-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   Trust / Features Strip
   ========================================================================== */
.trust-strip {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

/* ==========================================================================
   Brand Partners Marquee
   ========================================================================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0 3rem;
  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);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

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

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.brand-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 150px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-main);
  box-shadow: 0 12px 28px rgba(4, 106, 56, 0.12);
}

.brand-logo-img {
  max-height: 100px;
  max-width: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

/* ==========================================================================
   Best Sellers Section
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(4, 106, 56, 0.12);
  border-color: var(--emerald-main);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
}

.product-image-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.8rem 0;
}

.product-img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--emerald-main);
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.35;
  text-align: center;
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-features li {
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-features li::before {
  content: '✓';
  color: var(--emerald-main);
  font-weight: 800;
}

.product-price-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
  margin-bottom: 0.9rem;
}

.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald-main);
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  box-sizing: border-box;
}

.btn-prod-wa {
  background-color: #25D366;
  color: #FFFFFF;
  height: 40px;
  padding: 0 0.45rem;
  border-radius: 9px;
  border: 1px solid #25D366;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.80rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.22);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn-prod-wa:hover {
  background-color: #1EBE5B;
  border-color: #1EBE5B;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.32);
}

.btn-prod-wa svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.btn-prod-wa span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-prod-call {
  background-color: #F0FDF4;
  color: #046A38;
  border: 1.5px solid rgba(4, 106, 56, 0.25);
  height: 40px;
  padding: 0 0.45rem;
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.80rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn-prod-call:hover {
  background-color: #046A38;
  border-color: #046A38;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 106, 56, 0.2);
}

.btn-prod-call svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.btn-prod-call span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Outlets & Showrooms Section
   ========================================================================== */
.coming-soon-banner {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.coming-soon-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.coming-soon-badge-pill {
  background: #FFFFFF;
  color: #DC2626;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.coming-soon-banner-text {
  font-size: 0.95rem;
  font-weight: 600;
}

.coming-soon-btn {
  background: #FFFFFF;
  color: #DC2626;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform var(--transition-fast);
}

.coming-soon-btn:hover {
  transform: translateY(-2px);
}

.outlets-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Desktop View: Centered, exact same fixed card size (270px) */
@media (min-width: 768px) {
  .outlets-marquee-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: none !important;
    transform: none !important;
    width: 100% !important;
  }
  .outlets-marquee-group {
    display: contents !important;
  }
  .outlet-group-clone {
    display: none !important;
  }
  .outlet-card {
    width: 270px !important;
    max-width: 270px !important;
    flex: 0 0 270px !important;
  }
}

/* Mobile View: Continuous Smooth Left-to-Right Marquee Auto-Scroll */
@media (max-width: 767px) {
  .outlets-wrapper {
    padding: 0.5rem 0 1.2rem;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .outlets-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: branchMarquee 26s linear infinite;
  }
  .outlets-marquee-track:hover,
  .outlets-marquee-track:active {
    animation-play-state: paused;
  }
  .outlets-marquee-group {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
    padding-right: 1.2rem;
    flex-shrink: 0;
  }
  .outlet-card {
    width: 280px !important;
    max-width: 280px !important;
    flex: 0 0 280px !important;
    flex-shrink: 0;
  }
}

/* Opposite Direction Marquee Auto-Scroll: content glides smoothly from right to left */
@keyframes branchMarquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes branchMarqueeRTL {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.pulse-circle {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 1.8s infinite;
  vertical-align: middle;
  margin-right: 0.35rem;
}

.pulse-circle.red {
  background-color: #DC2626;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  animation: livePulseRed 1.8s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes livePulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.outlet-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.outlet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(4, 106, 56, 0.15);
  border-color: rgba(4, 106, 56, 0.35);
}

.outlet-card.coming-soon-card:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.18);
}

.outlet-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.outlet-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outlet-card:hover .outlet-card-img {
  transform: scale(1.05);
}

.outlet-card-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.outlet-card-name-box {
  padding: 1.3rem 1.1rem;
  text-align: center;
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
}

.outlet-card-name-box .outlet-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.3rem 0;
  line-height: 1.35;
}

.outlet-card-sub {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
}

.outlet-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: #046A38;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
}

.outlet-tag-red {
  background: rgba(254, 242, 242, 0.96);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.outlet-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.outlet-address {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.outlet-phone-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald-main);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.btn-outlet-view {
  width: 100%;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  border: 1px solid rgba(4, 106, 56, 0.2);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-outlet-view:hover {
  background-color: var(--emerald-main);
  color: #FFFFFF;
}

.btn-outlet-view-red {
  background-color: var(--red-light);
  color: var(--red-accent);
  border-color: rgba(220, 38, 38, 0.25);
}

.btn-outlet-view-red:hover {
  background-color: var(--red-accent);
  color: #FFFFFF;
}

/* ==========================================================================
   Outlets Hub Page Grid (outlet.html) - Premium 2-per-row Modern Theme
   ========================================================================== */
.outlets-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.outlet-hub-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
  position: relative;
}

.outlet-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -10px rgba(4, 106, 56, 0.16);
  border-color: rgba(4, 106, 56, 0.35);
}

.outlet-hub-card.is-coming-soon:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 22px 45px -10px rgba(220, 38, 38, 0.18);
}

.outlet-hub-img-box {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
  display: block;
  text-decoration: none;
}

.outlet-hub-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.outlet-hub-card:hover .outlet-hub-img-box img {
  transform: scale(1.05);
}

.outlet-hub-img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.outlet-hub-badge-wrap {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
}

.outlet-hub-rating-pill {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.outlet-hub-rating-pill span.star-icon {
  color: #FBBF24;
}

.outlet-hub-content {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 1.2rem;
}

.outlet-hub-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.outlet-hub-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.outlet-hub-title-link:hover .outlet-hub-title {
  color: #046A38;
}

.outlet-hub-tagline {
  font-size: 0.9rem;
  color: #046A38;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.outlet-hub-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #F8FAFC;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid #F1F5F9;
}

.outlet-hub-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
}

.outlet-hub-info-item .info-icon {
  color: #046A38;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.outlet-hub-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.4rem;
}

.outlet-hub-direct-btns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
}

.btn-hub-action {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.65rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.btn-hub-action span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-hub-call {
  background: #F0FDF4;
  color: #046A38;
  border: 1.5px solid rgba(4, 106, 56, 0.25);
}

.btn-hub-call:hover {
  background: #046A38;
  color: #FFFFFF;
  border-color: #046A38;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 106, 56, 0.25);
}

.btn-hub-wa {
  background: #25D366;
  color: #FFFFFF;
  border: 1.5px solid #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}

.btn-hub-wa:hover {
  background: #1EBE5B;
  border-color: #1EBE5B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

.btn-hub-view-detail {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #046A38 0%, #03522C 100%);
  color: #FFFFFF;
  padding: 0 1.4rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(4, 106, 56, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.btn-hub-view-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 106, 56, 0.35);
  background: linear-gradient(135deg, #057A41 0%, #046A38 100%);
  color: #FFFFFF;
}

.btn-hub-view-detail-red {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.btn-hub-view-detail-red:hover {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .outlets-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ==========================================================================
   Showroom Detail Page (outlet-detail.html)
   ========================================================================== */
.fk-breadcrumb-wrap {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 0;
  margin-top: 5rem;
}

.fk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.fk-breadcrumb a:hover {
  color: var(--emerald-main);
}

.fk-bc-sep {
  color: var(--border-strong);
}

.fk-bc-current {
  color: var(--text-dark);
  font-weight: 700;
}

/* Clean Minimalist Store Detail Card */
.clean-outlet-detail-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.clean-outlet-photo-wrap {
  width: 100%;
  height: 320px;
  position: relative;
  background: linear-gradient(135deg, #046A38 0%, #023D1F 100%);
  overflow: hidden;
}

.clean-outlet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-outlet-badge-red {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #DC2626;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.clean-outlet-body {
  padding: 2rem;
}

.clean-outlet-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.clean-outlet-info-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.clean-phone-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald-main);
  text-decoration: none;
}

.clean-phone-link:hover {
  text-decoration: underline;
}

.clean-outlet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.clean-outlet-map-box {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.btn-outlet-maps-dir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.75rem 1.2rem;
  background-color: var(--emerald-light);
  color: var(--emerald-main);
  border: 1px solid rgba(4, 106, 56, 0.2);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-outlet-maps-dir:hover {
  background-color: var(--emerald-main);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .clean-outlet-photo-wrap {
    height: 220px;
  }
  .clean-outlet-body {
    padding: 1.2rem;
  }
  .clean-outlet-title {
    font-size: 1.4rem;
  }
  .clean-outlet-actions {
    grid-template-columns: 1fr;
  }
}

.fk-product-layout {
  display: grid;
  grid-template-columns: 42% 58%;
}

.fk-gallery-col {
  padding: 2.2rem;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.fk-main-image-wrap {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #046A38 0%, #023D1F 100%);
}

.fk-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fk-ribbon-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.fk-thumbnails-bar {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.fk-thumb-btn {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-subtle);
  overflow: hidden;
  padding: 0;
}

.fk-thumb-btn.active,
.fk-thumb-btn:hover {
  border-color: var(--emerald-main);
}

.fk-action-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn-fk-buy {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  transition: transform var(--transition-fast);
}

.btn-fk-buy:hover {
  transform: translateY(-2px);
}

.btn-fk-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-fk-call {
  background: var(--emerald-main);
  color: #FFFFFF;
}

.btn-fk-call:hover {
  background: var(--emerald-hover);
}

.btn-fk-maps {
  grid-column: 1 / -1;
  background: #FFFFFF;
  border: 2px solid var(--emerald-main);
  color: var(--emerald-main);
  padding: 0.85rem;
}

.btn-fk-maps:hover {
  background: var(--emerald-light);
}

.fk-details-col {
  padding: 2.2rem 2.5rem;
}

.fk-product-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.fk-store-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.fk-store-tagline {
  font-size: 1rem;
  color: var(--emerald-main);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.fk-rating-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.fk-rating-pill-green {
  background: var(--emerald-main);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.fk-ratings-count {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.fk-assured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--emerald-main);
  background: var(--emerald-light);
  border: 1px solid rgba(4, 106, 56, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.fk-offers-card {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
}

.fk-offers-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fk-offers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fk-offers-list li {
  font-size: 0.88rem;
  color: #15803D;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.fk-offers-list li::before {
  content: '🏷️';
  font-size: 0.8rem;
}

.fk-section-box {
  margin-bottom: 1.8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
}

.fk-section-header {
  background: var(--bg-secondary);
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.fk-section-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
}

.fk-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.fk-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.fk-specs-table tr:last-child {
  border-bottom: none;
}

.fk-specs-label {
  width: 32%;
  padding: 0.85rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  background: #FAFAFA;
  vertical-align: top;
}

.fk-specs-value {
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.fk-specs-value a {
  color: var(--emerald-main);
  font-weight: 700;
}

.fk-specs-value a:hover {
  text-decoration: underline;
}

.fk-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.2rem 1.4rem;
}

.fk-brand-chip {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fk-amenity-chip {
  background: var(--emerald-light);
  border: 1px solid rgba(4, 106, 56, 0.2);
  color: var(--emerald-main);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.fk-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.fk-map-frame {
  width: 100%;
  height: 300px;
  border: 0;
}

.fk-map-footer {
  padding: 1rem 1.4rem;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Page Hero & Inner Pages (About & Contact)
   ========================================================================== */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 3.5rem;
  background-image: linear-gradient(rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.92)), url('../assets/hero/image_for_aboutus.png');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.outlet-page-hero,
.about-page-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.92)), url('../assets/hero/image_for_aboutus.png');
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.glass-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Contact Hub & Directory (Modern, Human-Crafted & High-Converting)
   ========================================================================== */
.contact-touchpoints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-touchpoint-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-touchpoint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(4, 106, 56, 0.25);
}

.contact-tp-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--emerald-light);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.contact-tp-icon-box.wa {
  background: #DCFCE7;
  color: #16A34A;
}

.contact-tp-icon-box.mail {
  background: #FEF3C7;
  color: #D97706;
}

.contact-tp-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.contact-tp-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.contact-tp-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--emerald-main);
  margin-bottom: 1.2rem;
  display: block;
}

.contact-branch-deck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 860px) {
  .contact-branch-deck {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

.contact-branch-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-main) 0%, var(--emerald-accent) 100%);
  opacity: 0.9;
}

.contact-branch-card.coming-soon-card::before {
  background: linear-gradient(90deg, #DC2626 0%, #F87171 100%);
}

.contact-branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 106, 56, 0.09);
  border-color: rgba(4, 106, 56, 0.25);
}

.contact-branch-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.contact-branch-header {
  margin-bottom: 1.2rem;
}

.contact-branch-header .outlet-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.contact-branch-header .outlet-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-branch-details-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border-subtle);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-main);
  margin-top: 2px;
}

.contact-branch-card.coming-soon-card .contact-detail-icon {
  color: #DC2626;
}

.contact-detail-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 0.3rem;
}

.contact-phone-highlight {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--emerald-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.contact-phone-highlight:hover {
  color: var(--emerald-hover);
  text-decoration: underline;
}

.contact-branch-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-subtle);
}

.contact-branch-btn-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
}

.btn-branch-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 44px;
  padding: 0 0.65rem;
  border-radius: 10px;
  background: #F0FDF4;
  color: #046A38;
  border: 1.5px solid rgba(4, 106, 56, 0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.btn-branch-call:hover {
  background: #046A38;
  border-color: #046A38;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 106, 56, 0.25);
}

.btn-branch-call span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-branch-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 44px;
  padding: 0 0.65rem;
  border-radius: 10px;
  background: #25D366;
  color: #FFFFFF;
  border: 1.5px solid #25D366;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.btn-branch-wa:hover {
  background: #1EBE5B;
  border-color: #1EBE5B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

.btn-branch-wa span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-branch-details,
.btn-outlet-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 44px;
  padding: 0 1.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.btn-branch-details:hover,
.btn-outlet-view:hover {
  background: linear-gradient(135deg, #046A38 0%, #03522C 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 106, 56, 0.25);
}

.btn-branch-details.coming-soon-btn {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-branch-details.coming-soon-btn:hover {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
  color: #FFFFFF;
}

.btn-branch-details.coming-soon-btn,
.btn-outlet-view-red {
  background: rgba(220, 38, 38, 0.06);
  color: #DC2626;
  border-color: rgba(220, 38, 38, 0.22);
}

.btn-branch-details.coming-soon-btn:hover,
.btn-outlet-view-red:hover {
  background: rgba(220, 38, 38, 0.12);
  border-color: #DC2626;
  color: #B91C1C;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-faq-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-faq-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.contact-faq-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid var(--border-subtle);
  padding: 2rem;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-logo-img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.modal-footer {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sticky Floating Action Buttons
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast);
}

.float-btn-circle:hover {
  transform: scale(1.1);
}

.float-btn-wa-circle {
  background: #25D366;
}

.float-btn-call-circle {
  background: #E50914;
}

/* ==========================================================================
   Smooth Animated Wave Divider (Above Emerald Green Footer)
   ========================================================================== */
.footer-wave-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: -2px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.footer-waves {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: -7px;
  min-height: 50px;
  max-height: 70px;
}

.wave-parallax > use {
  animation: moveWave 12s cubic-bezier(.55,.5,.45,.5) infinite;
}
.wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes moveWave {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* ==========================================================================
   Site Footer (Rich Emerald Green #046A38 — Clean, Minimal & Essential)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #046A38 0%, #024322 100%);
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-email-box {
  margin-top: 1.2rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-email-label {
  font-size: 0.75rem;
  color: #FFD700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-email-link {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
}

.footer-email-link:hover {
  color: #FFD700;
}

.footer-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-footer-email,
.btn-footer-wa,
.btn-footer-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-footer-email {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-footer-email:hover {
  background: #FFFFFF;
  color: var(--emerald-main);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-footer-wa {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
}

.btn-footer-wa:hover {
  background: #1EBE5B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-footer-call {
  background: rgba(255, 255, 255, 0.95);
  color: var(--emerald-main);
  border: 1px solid #FFFFFF;
}

.btn-footer-call:hover {
  background: #FFFFFF;
  color: var(--emerald-hover);
  transform: translateY(-2px);
}

.footer-title {
  color: #FFD700;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-branch-name {
  color: #FFD700;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-branch-addr {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-phone-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 0.2rem;
  display: inline-block;
  text-decoration: underline;
}

.footer-phone-btn:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-locations {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

/* ==========================================================================
   Responsive Breakpoints & 2-In-1 Row Outlets Mobile Layout
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-title span { font-size: 3rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fk-product-layout { grid-template-columns: 1fr; }
  .fk-gallery-col { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 1.5rem; }
  .fk-details-col { padding: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .navbar-pill {
    padding: 0.5rem 1.2rem;
    position: relative;
  }

  .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo-img {
    height: 36px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-section {
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title span {
    font-size: 2.3rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

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

  /* Outlets Layout on Mobile */
  .outlets-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .outlets-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .outlet-hub-card {
    border-radius: 16px !important;
  }

  .outlet-hub-img-box {
    height: 210px !important;
  }

  .outlet-hub-content {
    padding: 1.4rem !important;
  }

  .outlet-hub-title {
    font-size: 1.22rem !important;
  }

  .outlet-hub-tagline {
    font-size: 0.86rem !important;
    margin-bottom: 0.75rem !important;
  }

  .outlet-hub-info-list {
    padding: 0.85rem 1rem !important;
    gap: 0.5rem !important;
  }

  .outlet-hub-info-item {
    font-size: 0.82rem !important;
  }

  .btn-hub-view-detail {
    height: 44px !important;
    padding: 0 1rem !important;
    font-size: 0.86rem !important;
  }

  .btn-hub-icon-action {
    width: 44px !important;
    height: 44px !important;
  }

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

@media (max-width: 640px) {
  /* 2-in-1 Row Format for Products on Mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .product-card {
    padding: 0.85rem 0.65rem !important;
  }

  .product-image-wrap {
    height: 120px !important;
    margin: 0.4rem 0 !important;
  }

  .product-img {
    max-height: 105px !important;
  }

  .product-badge {
    top: 0.5rem !important;
    right: 0.5rem !important;
    font-size: 0.62rem !important;
    padding: 0.2rem 0.45rem !important;
  }

  .product-category {
    font-size: 0.68rem !important;
  }

  .product-name {
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
    margin: 0.2rem 0 !important;
  }

  .product-features {
    margin: 0.4rem 0 !important;
    gap: 0.2rem !important;
  }

  .product-features li {
    font-size: 0.72rem !important;
    gap: 0.25rem !important;
  }

  .product-actions {
    grid-template-columns: 1fr !important;
    gap: 0.35rem !important;
  }

  .btn-prod-wa, .btn-prod-call {
    padding: 0.45rem 0.3rem !important;
    font-size: 0.72rem !important;
    text-align: center !important;
  }

  .brand-card {
    width: 240px !important;
    height: 125px !important;
    padding: 1rem 1.5rem !important;
  }

  .brand-logo-img {
    max-height: 85px !important;
    max-width: 190px !important;
  }

  .coming-soon-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
  }

  .coming-soon-btn {
    width: 100%;
    text-align: center;
  }

  .fk-main-image-wrap {
    height: 240px;
  }

  .fk-action-strip {
    grid-template-columns: 1fr;
  }

  .fk-specs-label {
    width: 38%;
    padding: 0.75rem 0.9rem;
    font-size: 0.8rem;
  }

  .fk-specs-value {
    padding: 0.75rem 0.9rem;
    font-size: 0.84rem;
  }

  .fk-store-title {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   About Us Page Styles — Clean, Professional, Architectural & Animated
   ========================================================================== */

/* Keyframe Animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBorderGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(4, 106, 56, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(4, 106, 56, 0);
  }
}

@keyframes subtleMeshDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-10px, 15px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Architectural Hero Section with Background Image */
.about-hero-clean {
  position: relative;
  background-color: #0B132B;
  background-image: 
    linear-gradient(180deg, rgba(11, 19, 43, 0.82) 0%, rgba(11, 19, 43, 0.90) 65%, #0B132B 100%),
    url('../assets/hero/image_for_aboutus.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 9.5rem 0 7rem;
  overflow: hidden;
  color: #FFFFFF;
}

.about-hero-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  opacity: 0.65;
}

.about-hero-glow-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(4, 106, 56, 0.5) 0%, rgba(11, 19, 43, 0.65) 60%, rgba(8, 14, 30, 0.95) 100%);
  pointer-events: none;
  animation: subtleMeshDrift 12s ease-in-out infinite;
}

.about-hero-clean-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.about-hero-clean-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.42rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero-clean-badge svg {
  color: var(--emerald-accent);
}

.about-hero-clean-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.3rem;
  animation: heroFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.about-hero-clean-title .gradient-text {
  background: linear-gradient(135deg, #34D399 0%, #A7F3D0 50%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-clean-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ==========================================================================
   Clean Floating Stats Ribbon
   ========================================================================== */
.about-stats-clean-wrap {
  position: relative;
  z-index: 3;
  margin-top: -3.2rem;
  margin-bottom: 3.5rem;
}

.about-stats-clean-box {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(4, 106, 56, 0.05);
  padding: 2.2rem 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 660px;
  margin: 0 auto;
}

.about-stat-clean-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0.4rem 0.6rem;
  transition: transform var(--transition-normal);
}

.about-stat-clean-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
}

.about-stat-clean-col:hover {
  transform: translateY(-4px);
}

.about-stat-clean-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--emerald-main);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.about-stat-clean-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.18rem;
}

.about-stat-clean-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   Editorial Story Section (Clean Full-Width Layout)
   ========================================================================== */
.about-story-clean-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.about-story-clean-header {
  margin-bottom: 2rem;
}

.about-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-tag-pill svg {
  color: var(--emerald-main);
}

.about-section-heading {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.about-story-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-body-text {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.about-body-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.about-story-closing {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--emerald-main);
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 106, 56, 0.3);
  background: var(--emerald-light);
}

.about-highlight-item svg {
  color: var(--emerald-main);
  flex-shrink: 0;
}

/* ==========================================================================
   Clean Milestones Journey Timeline
   ========================================================================== */
.about-journey-section {
  padding: 5.5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-journey-timeline {
  max-width: 820px;
  margin: 3.5rem auto 0;
  position: relative;
  padding-left: 2.8rem;
}

.about-journey-line {
  position: absolute;
  left: 13px;
  top: 15px;
  bottom: 25px;
  width: 3px;
  background: linear-gradient(180deg, var(--emerald-main) 0%, var(--emerald-accent) 70%, rgba(4, 106, 56, 0.2) 100%);
  border-radius: 2px;
}

.about-journey-item {
  position: relative;
  margin-bottom: 2.6rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-journey-item:last-child {
  margin-bottom: 0;
}

.about-journey-node {
  position: absolute;
  left: -2.8rem;
  top: 1.3rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--emerald-main);
  box-shadow: 0 0 0 4px rgba(4, 106, 56, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-journey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-main);
}

.about-journey-item:hover .about-journey-node {
  transform: scale(1.25);
  border-color: var(--emerald-accent);
}

.about-journey-node.node-accent {
  border-color: var(--emerald-accent);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.2);
}

.about-journey-node.node-accent .about-journey-dot {
  background: var(--emerald-accent);
  animation: pulseBorderGlow 2s infinite;
}

.about-journey-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-journey-item:hover .about-journey-card {
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(4, 106, 56, 0.08);
  border-color: rgba(4, 106, 56, 0.25);
}

.about-journey-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.about-journey-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--emerald-main);
}

.about-journey-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--emerald-light);
  color: var(--emerald-dark);
}

.about-journey-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.about-journey-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Flag-Styled Animated Cards (Vision, Mission & Leadership Creed)
   ========================================================================== */
@keyframes flagWaveSheen {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes flagTabFlutter {
  0%, 100% {
    transform: perspective(400px) rotateY(0deg);
  }
  50% {
    transform: perspective(400px) rotateY(-8deg) translateY(-2px);
  }
}

.about-flag-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

.about-flag-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem 2.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.about-flag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -10px rgba(4, 106, 56, 0.12);
  border-color: rgba(4, 106, 56, 0.3);
}

/* Flag Ribbon Banner on Top Left */
.about-flag-ribbon {
  position: absolute;
  top: 0;
  left: 1.8rem;
  background: linear-gradient(135deg, #046A38 0%, #00A86B 100%);
  color: #FFFFFF;
  padding: 0.45rem 1.4rem 0.65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
  box-shadow: 0 4px 12px rgba(4, 106, 56, 0.25);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  transform-origin: top center;
  animation: flagTabFlutter 4s ease-in-out infinite;
}

.about-flag-ribbon.flag-gold {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
  animation-delay: -2s;
}

.about-flag-card-body {
  margin-top: 0.8rem;
}

.about-flag-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--emerald-light);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.about-flag-card:hover .about-flag-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: var(--emerald-main);
  color: #FFFFFF;
}

.about-flag-card.flag-gold-card:hover .about-flag-icon-wrap {
  background: var(--gold-accent);
  color: #FFFFFF;
}

.about-flag-card.flag-gold-card .about-flag-icon-wrap {
  background: var(--gold-light);
  color: var(--gold-accent);
}

.about-flag-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.about-flag-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Regal Flag Leadership Card */
.about-flag-creed-card {
  position: relative;
  background: linear-gradient(135deg, #0B132B 0%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3.8rem 3rem 3rem;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 24px 50px -10px rgba(11, 19, 43, 0.35);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-flag-creed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -12px rgba(4, 106, 56, 0.25);
}

.about-creed-top-banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #046A38 0%, #00A86B 50%, #046A38 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  padding: 0.45rem 2rem 0.65rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: flagWaveSheen 4s linear infinite;
  white-space: nowrap;
}

.about-creed-quote-svg {
  color: var(--emerald-accent);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.about-creed-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.55;
  color: #FFFFFF;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.about-creed-author-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   Clean Consultation CTA Card
   ========================================================================== */
.about-cta-section {
  padding: 1.5rem 0 5.5rem;
}

.about-cta-clean-card {
  background: linear-gradient(135deg, #046A38 0%, #023D1F 100%);
  border-radius: var(--radius-lg);
  padding: 3.4rem 2.8rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(4, 106, 56, 0.35);
}

.about-cta-clean-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.about-cta-clean-desc {
  font-size: 1.04rem;
  color: #D1EBE0;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  line-height: 1.65;
}

.about-cta-clean-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-cta-call:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-cta-outlets {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: var(--emerald-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast);
}

.btn-cta-outlets:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   Global Scroll Reveal Animation Utilities
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-1 { transition-delay: 0.08s; }
.reveal-stagger-2 { transition-delay: 0.16s; }
.reveal-stagger-3 { transition-delay: 0.24s; }
.reveal-stagger-4 { transition-delay: 0.32s; }
.reveal-stagger-5 { transition-delay: 0.40s; }
.reveal-stagger-6 { transition-delay: 0.48s; }

/* ==========================================================================
   Mobile-First Responsive Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
  .about-stats-clean-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1rem;
    padding: 1.8rem 1.4rem;
  }
  
  .about-stat-clean-col:nth-child(2)::after {
    display: none;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-clean {
    padding: 7.5rem 0 5rem;
    background-position: center center;
  }

  .about-stats-clean-wrap {
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
  }

  .about-stats-clean-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 0.8rem;
    padding: 1.5rem 1rem;
  }

  .about-stat-clean-num {
    font-size: 2rem;
  }

  .about-stat-clean-col:not(:last-child)::after {
    display: none;
  }

  .about-story-text-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-journey-timeline {
    padding-left: 2.2rem;
    margin-top: 2.5rem;
  }

  .about-journey-line {
    left: 8px;
  }

  .about-journey-node {
    left: -2.2rem;
    width: 24px;
    height: 24px;
    top: 1.2rem;
  }

  .about-journey-dot {
    width: 6px;
    height: 6px;
  }

  .about-journey-card {
    padding: 1.3rem 1.2rem;
  }

  .about-flag-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .about-flag-card {
    padding: 2.8rem 1.5rem 1.8rem;
  }

  .about-flag-creed-card {
    padding: 3.2rem 1.4rem 2rem;
  }

  .about-creed-top-banner {
    padding: 0.35rem 1.2rem 0.55rem;
    font-size: 0.68rem;
    max-width: 90%;
  }

  .about-creed-text {
    font-size: 1.15rem;
  }

  .about-cta-clean-card {
    padding: 2.5rem 1.5rem;
  }

  .about-cta-clean-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-clean-actions a {
    width: 100%;
    justify-content: center;
  }
}





