/* ==========================================================================
   ARTIST OF NATURAL ESSENCE — MASTER DESIGN SYSTEM & STYLES
   Since 1954 | F&B Manufacturer & Hospitality Consulting
   Ultra-Responsive Mobile & Desktop Optimization
   ========================================================================== */

:root {
  /* Core Brand Colors */
  --chocolate-dark: #140b07;
  --chocolate-rich: #1e110a;
  --chocolate-mid: #2d1810;
  --chocolate-light: #44261a;
  --chocolate-border: #3d2317;

  /* Regal Gold Accents */
  --gold-primary: #c9a84c;
  --gold-light: #e5c875;
  --gold-dark: #a38230;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --gold-bg-subtle: rgba(201, 168, 76, 0.08);

  /* Light & Neutral Surfaces */
  --cream-bg: #fbf8f2;
  --cream-card: #f4ede2;
  --cream-border: #e6dac8;
  --white: #ffffff;
  
  /* Text Colors */
  --text-light-primary: #f8f3ec;
  --text-light-secondary: #c7b8aa;
  --text-light-muted: #8e7d70;
  --text-dark-primary: #1a0f0a;
  --text-dark-secondary: #4a3e36;
  --text-dark-muted: #73645a;

  /* Utility & Functional */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;
  --success: #2e7d32;
  --error: #d32f2f;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-subheading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px rgba(201, 168, 76, 0.2);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= RESET & BASE ================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--chocolate-dark);
  color: var(--text-light-primary);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-light-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light-secondary);
  word-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ================= CONTAINER & UTILITIES ================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.gold-text {
  color: var(--gold-primary) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), #dfba5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

/* Light Section Themes */
.theme-light {
  background-color: var(--cream-bg);
  color: var(--text-dark-primary);
}

.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4 {
  color: var(--text-dark-primary);
}

.theme-light p {
  color: var(--text-dark-secondary);
}

/* Section Headers */
.section-header {
  margin-bottom: 44px;
}

.section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  background: var(--gold-bg-subtle);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
}

.page-banner-title {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-banner-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-light-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ================= RESPONSIVE GRID UTILITIES ================= */
.responsive-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: center;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.35;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: var(--chocolate-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
  filter: brightness(1.06);
}

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

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--chocolate-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  filter: brightness(1.08);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-group-responsive {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= TOP NOTIFICATION BAR ================= */
.top-bar {
  background: #0d0704;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-light-secondary);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-locations {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-locations span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-locations .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.6;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
}

/* ================= HEADER & NAVBAR ================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(20, 11, 7, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(15, 8, 5, 0.98);
  height: 72px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(201, 168, 76, 0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 12px;
}

.logo-brand .brand-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-light-primary);
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-brand .brand-title span {
  color: var(--gold-primary);
}

.logo-brand .brand-subtitle {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 1;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light-secondary);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-primary);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(201, 168, 76, 0.25);
  color: var(--white);
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(circle at 50% 20%, rgba(68, 38, 26, 0.45) 0%, rgba(20, 11, 7, 0.98) 70%);
  background-color: var(--chocolate-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  max-width: 960px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.18rem;
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--text-light-secondary);
  line-height: 1.7;
}

/* Dual Gateway Cards */
.hero-gateways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.gateway-card {
  position: relative;
  background: linear-gradient(145deg, rgba(45, 24, 16, 0.75) 0%, rgba(26, 15, 10, 0.95) 100%);
  border: 1.5px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.gateway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gateway-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.gateway-card:hover::before {
  opacity: 1;
}

.gateway-tag {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.gateway-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.gateway-desc {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  margin-bottom: 22px;
  line-height: 1.6;
}

.gateway-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.gateway-pill {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-light-primary);
}

/* ================= HERITAGE TIMELINE (1954 - PRESENT) ================= */
.heritage-strip {
  background: var(--chocolate-rich);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 36px 0;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.heritage-stat-box {
  padding: 16px 12px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.heritage-stat-box:last-child {
  border-right: none;
}

.heritage-stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.heritage-stat-label {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================= PRODUCT CARDS & CATEGORIES ================= */
.category-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--chocolate-mid);
  color: var(--text-light-secondary);
  border: 1px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.filter-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--chocolate-dark);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

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

.product-card {
  background: var(--chocolate-rich);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.15);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.product-badge {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-specs {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 8px;
}

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

.spec-label {
  color: var(--text-light-muted);
  white-space: nowrap;
}

.spec-value {
  color: var(--text-light-primary);
  font-weight: 600;
  text-align: right;
}

.product-actions {
  display: flex;
  gap: 10px;
}

/* ================= HOSPITALITY SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--chocolate-rich);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-light-secondary);
  margin-bottom: 18px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light-secondary);
  margin-bottom: 8px;
}

.service-features li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
  margin-top: 5px;
}

/* ================= GLOBAL HUBS DIRECTORY ================= */
.hubs-wrapper {
  background: var(--chocolate-mid);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hubs-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--chocolate-rich);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.hub-tab-btn {
  background: none;
  color: var(--text-light-secondary);
  padding: 16px 12px;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition-fast);
}

.hub-tab-btn:last-child {
  border-right: none;
}

.hub-tab-btn:hover {
  color: var(--white);
  background: rgba(201, 168, 76, 0.05);
}

.hub-tab-btn.active {
  color: var(--gold-primary);
  background: var(--chocolate-mid);
  box-shadow: inset 0 3px 0 var(--gold-primary);
}

.hub-panel {
  display: none;
  padding: 36px 30px;
}

.hub-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.hub-details h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hub-role-badge {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.hub-address-card {
  background: var(--chocolate-rich);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.hub-address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.hub-address-line:last-child {
  margin-bottom: 0;
}

.hub-address-line i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin-top: 4px;
}

/* ================= B2B FORMS ================= */
.form-card {
  background: var(--chocolate-rich);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(15, 8, 5, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-light-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
  background: rgba(25, 14, 9, 0.95);
}

.form-control::placeholder {
  color: var(--text-light-muted);
}

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

/* ================= FOOTER ================= */
.footer {
  background: #090503;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 70px 0 30px;
  color: var(--text-light-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand .brand-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ================= DETAILED RESPONSIVE BREAKPOINTS ================= */

/* Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2.2rem; }
  .products-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .responsive-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .responsive-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .heritage-stat-box:nth-child(2) { border-right: none; }
}

/* Tablets & Mobile Devices (<= 991px) */
@media (max-width: 991px) {
  :root { --header-height: 70px; }
  
  .container {
    padding: 0 18px;
  }
  
  .section-padding { padding: 55px 0; }
  .section-padding-sm { padding: 35px 0; }
  
  .top-bar { display: none; }
  
  /* Header & Mobile Drawer */
  .logo-brand .brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }
  
  .logo-brand .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-actions .btn,
  .nav-actions .btn-gold,
  .nav-actions .btn-sm {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #120905;
    flex-direction: column;
    padding: 28px 20px;
    gap: 16px;
    align-items: stretch;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 1001;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-link.active, .nav-link:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.3);
  }

  .nav-link::after {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding: 45px 0 65px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* Dual Gateways */
  .hero-gateways {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gateway-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .gateway-title {
    font-size: 1.45rem;
  }

  .gateway-desc {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  /* Responsive Grids collapsed on Mobile */
  .responsive-grid-2,
  .responsive-grid-3,
  .responsive-grid-4,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Products & Services */
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 20px 18px;
  }

  .product-title {
    font-size: 1.25rem;
  }

  /* Horizontal Scrolling Category Filter */
  .category-filter-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 24px;
    gap: 8px;
  }

  .category-filter-nav::-webkit-scrollbar {
    height: 4px;
  }

  .category-filter-nav::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
  }

  .filter-tab {
    font-size: 0.82rem;
    padding: 8px 14px;
    flex-shrink: 0;
  }

  /* Heritage Strip (2x2) */
  .heritage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .heritage-stat-box {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 76, 0.12);
  }

  .heritage-stat-number {
    font-size: 1.9rem;
  }

  .heritage-stat-label {
    font-size: 0.75rem;
  }

  /* Global Hubs Tabs (2x2) */
  .hubs-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-tab-btn {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .hub-tab-btn:nth-child(2) {
    border-right: none;
  }

  .hub-panel {
    padding: 24px 18px;
  }

  .hub-panel.active {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hub-details h3 {
    font-size: 1.4rem;
  }

  /* Forms */
  /* Mobile Single Column Enforcements */
  .products-grid,
  .services-grid,
  .responsive-grid-2,
  .responsive-grid-3,
  .responsive-grid-4,
  .contact-grid,
  .hero-gateways,
  .form-row,
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 20px !important;
  }

  .products-grid > *,
  .services-grid > *,
  .responsive-grid-2 > *,
  .responsive-grid-3 > *,
  .responsive-grid-4 > *,
  .contact-grid > *,
  .hero-gateways > *,
  .form-row > *,
  .footer-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .heritage-grid,
  .hubs-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
  }

  .heritage-grid > *,
  .hubs-tabs > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hub-tab-btn {
    padding: 10px 6px !important;
    font-size: 0.82rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }

  .hub-tab-btn:nth-child(2) {
    border-right: none !important;
  }

  .hub-panel {
    padding: 20px 14px !important;
  }

  .hub-panel.active {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .hub-details h3 {
    font-size: 1.35rem !important;
  }

  .form-card {
    padding: 20px 14px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .form-group {
    margin-bottom: 14px;
    width: 100%;
  }

  .form-control {
    padding: 11px 12px;
    font-size: 0.9rem;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Buttons & CTAs on Mobile */
  .btn {
    white-space: normal;
    box-sizing: border-box !important;
    max-width: 100% !important;
    word-break: break-word;
    text-align: center;
  }

  .btn-block,
  .btn-lg,
  .product-actions .btn,
  .gateway-card .btn,
  .form-card .btn,
  .hub-panel .btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
  }

  .btn-group-responsive {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-group-responsive .btn {
    width: 100% !important;
  }

  /* Prevent AOS animations from creating horizontal scrollbars */
  [data-aos] {
    overflow-x: hidden !important;
    max-width: 100% !important;
    transform: none !important;
  }

  /* Typography */
  .section-title {
    font-size: 1.75rem !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .page-banner-title {
    font-size: 1.85rem !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }

  .page-banner-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }

  .hero::before {
    display: none !important;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
  .logo-brand .brand-title { font-size: 0.88rem !important; }
  .hero-title { font-size: 1.65rem !important; }
  .section-title { font-size: 1.55rem !important; }
  .btn, .btn-lg { padding: 11px 12px !important; font-size: 0.85rem !important; }
}

/* ================= OWNER PROFILE & CONSULTING ENHANCEMENTS ================= */
.founder-card {
  background: linear-gradient(135deg, rgba(38, 20, 13, 0.95) 0%, rgba(20, 10, 6, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.founder-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.founder-photo-box {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.15) 0%, rgba(26, 14, 9, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.founder-photo-box .avatar-icon {
  font-size: 4.5rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.founder-photo-box .avatar-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 14px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.founder-title {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 18px;
}

.founder-bio {
  font-size: 0.96rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
}

.founder-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* F&B Consulting Feature Grid */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.consulting-card {
  background: #190e09;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.consulting-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.consulting-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.consulting-card h3 {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.consulting-card p {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.why-us-card {
  background: #170d08;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.why-us-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.why-us-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.why-us-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-us-card p {
  color: var(--text-light-secondary);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  .founder-photo-box {
    max-width: 180px;
    margin: 0 auto;
  }
  .founder-badge {
    margin: 0 auto 14px;
  }
  .founder-pills {
    justify-content: center;
  }
  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

