/* ==========================================================================
   SIGNATURE HOSPITALITY MANAGEMENT & CONSULTANCY LIMITED (SHMCL)
   OFFICIAL COLOR SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* Official Palette from Deck */
  --navy-dark: #091321;
  --navy-primary: #0D1929;
  --navy-card: #142339;
  --navy-card-hover: #1A2E4B;

  --gold-primary: #C9972E;
  --gold-light: #E5B242;
  --gold-dark: #A5781E;
  --gold-glow: rgba(201, 151, 46, 0.25);

  --cream-bg: #F8F7F3;
  --cream-card: #FFFFFF;
  --cream-border: #E8E5DD;

  --text-dark: #0D1929;
  --text-body: #4A5568;
  --text-muted: #718096;
  --text-light: #FFFFFF;
  --text-light-muted: #A0AEC0;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: #C9972E;

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--cream-bg);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-tag-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 650px;
  margin: 0 auto 50px;
}

/* Common Section Padding */
.section {
  padding: 90px 0;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.825rem;
  color: var(--text-light-muted);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider-dot {
  color: var(--gold-primary);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-link:hover {
  color: var(--gold-light);
}

.top-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 25, 41, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 151, 46, 0.25);
  padding: 14px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-seal {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  font-size: 1.1rem;
  box-shadow: 0 0 14px var(--gold-glow);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-light);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--text-light);
}

.nav-btn {
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 15px var(--gold-glow);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: var(--navy-primary);
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(9, 19, 33, 0.92) 0%,
    rgba(13, 25, 41, 0.96) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 46, 0.12);
  border: 1px solid var(--gold-primary);
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-pill-dot {
  color: var(--gold-dark);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 780px;
}

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

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-whatsapp-hero:hover {
  background: #25D366;
  color: #06070a;
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */
.section-story {
  background: var(--cream-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.story-lead {
  font-size: 1.1rem;
  color: var(--navy-primary);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.7;
}

.story-body {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-quote-card {
  background: #FFFFFF;
  border-left: 4px solid var(--gold-primary);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.story-quote-card p {
  font-style: italic;
  color: var(--navy-primary);
  font-weight: 500;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #FFFFFF;
  border-top: 4px solid var(--gold-primary);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 600;
}

/* ==========================================================================
   Vision, Mission & Core Values
   ========================================================================== */
.section-foundation {
  background: var(--navy-primary);
  color: var(--text-light);
}

.section-foundation .section-title {
  color: var(--text-light);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.vm-box {
  border-radius: 10px;
  padding: 36px 32px;
}

.vision-box {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.vision-box .vm-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.vision-box p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.mission-box {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

.mission-box .vm-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.mission-box p {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.vm-icon {
  font-size: 1.3rem;
}

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

.value-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.value-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 151, 46, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Our Services (6 Cards from Deck)
   ========================================================================== */
.section-services {
  background: var(--cream-bg);
}

.services-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-box {
  background: #FFFFFF;
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 8px 8px 0;
  padding: 32px 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-num-tab {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.service-box-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 12px;
}

.service-box-text {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   How We Work (Process 01 -> 04)
   ========================================================================== */
.section-process {
  background: #FFFFFF;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

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

.process-card {
  text-align: center;
  padding: 24px 16px;
}

.process-circle {
  width: 64px;
  height: 64px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Why Choose SHMCL Section
   ========================================================================== */
.section-why {
  background: var(--navy-primary);
  color: var(--text-light);
}

.section-why .section-title {
  color: var(--text-light);
}

.why-shmcl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-lead {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-highlight-box {
  background: rgba(201, 151, 46, 0.1);
  border-left: 3px solid var(--gold-primary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}

.why-highlight-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.why-highlight-box p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.why-shmcl-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advantage-pill-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease;
}

.advantage-pill-card:hover {
  transform: translateX(4px);
  border-color: var(--gold-primary);
}

.advantage-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 151, 46, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.advantage-pill-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.advantage-pill-card p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Leadership & Expertise Team
   ========================================================================== */
.section-team {
  background: var(--cream-bg);
}

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

.leader-card {
  background: #FFFFFF;
  border-top: 4px solid var(--gold-primary);
  border-radius: 12px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.leader-featured {
  border-top-color: var(--navy-primary);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(13, 25, 41, 0.1);
}

.leader-avatar-circle {
  width: 114px;
  height: 114px;
  background: var(--navy-primary);
  border: 3.5px solid var(--gold-primary);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 6px 20px rgba(201, 151, 46, 0.35);
  flex-shrink: 0;
}

.leader-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.leader-avatar-blank {
  background: var(--navy-card);
  color: var(--gold-primary);
  font-size: 2.2rem;
  border-color: rgba(201, 151, 46, 0.5);
}

.leader-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 6px;
}

.leader-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding: 3px 10px;
  background: rgba(201, 151, 46, 0.1);
  border-radius: 99px;
  display: inline-block;
}

.leader-bio {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   Our Clients (9 Real Client Cards from Screenshot)
   ========================================================================== */
.section-clients {
  background: var(--navy-primary);
  color: var(--text-light);
}

.section-clients .section-title {
  color: var(--text-light);
}

.section-clients .section-subtitle {
  color: var(--text-light-muted);
}

.clients-grid-nine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 22px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--navy-card-hover);
}

.client-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.client-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.client-loc {
  font-size: 0.825rem;
  color: var(--text-light-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.client-loc i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.client-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  border: 1px solid rgba(201, 151, 46, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: auto;
}

/* ==========================================================================
   Engagement Models: 3 Packages
   ========================================================================== */
.section-packages {
  background: var(--cream-bg);
}

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

.package-card {
  background: #FFFFFF;
  border-top: 4px solid var(--gold-primary);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.package-card.package-featured {
  background: var(--navy-primary);
  color: var(--text-light);
  border: 2px solid var(--gold-primary);
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(13, 25, 41, 0.25);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 16px;
  border-radius: 99px;
}

.package-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 4px;
}

.package-featured .package-title {
  color: var(--gold-light);
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-featured .package-subtitle {
  color: var(--text-light-muted);
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.btn-package {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--navy-primary);
  border: 1px solid var(--navy-primary);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-package:hover {
  background: var(--navy-primary);
  color: #FFFFFF;
}

.btn-package-featured {
  background: var(--gold-primary);
  color: var(--navy-dark);
  border-color: var(--gold-primary);
}

.btn-package-featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ==========================================================================
   Contact Section (Let's Build Something Exceptional Together)
   ========================================================================== */
.section-contact {
  background: var(--navy-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.contact-banner-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-banner-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.contact-banner-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-banner-lead {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  margin-bottom: 24px;
}

.contact-info-table {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}

.info-value:hover {
  color: var(--gold-light);
}

/* Quick Form */
.contact-quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.form-ctrl {
  background: var(--navy-primary);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 12px 14px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-ctrl:focus {
  border-color: var(--gold-primary);
}

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

/* Consultant Aside Card */
.consultant-portrait-card {
  background: var(--navy-primary);
  border: 1px solid rgba(201, 151, 46, 0.4);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
}

.portrait-circle {
  width: 110px;
  height: 110px;
  background: var(--navy-card);
  border: 3px solid var(--gold-primary);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 24px var(--gold-glow);
  flex-shrink: 0;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consultant-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.consultant-role {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}

.consultant-motto {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.consultant-direct-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-consult-call {
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.btn-consult-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #050B14;
  border-top: 1px solid var(--border-light);
  padding: 30px 0;
  color: var(--text-light-muted);
  font-size: 0.825rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  color: var(--text-light-muted);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid-nine {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
  .package-featured {
    transform: none;
  }
  .why-shmcl-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-banner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 55px 0;
  }

  /* Top Bar */
  .top-bar {
    padding: 10px 0;
    font-size: 0.78rem;
  }
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-bar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .top-bar-right {
    justify-content: center;
    gap: 14px;
  }
  .divider-dot {
    display: none;
  }

  /* Header & Navigation */
  .navbar {
    padding: 12px 0;
  }
  .logo-seal {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .logo-main {
    font-size: 0.95rem;
  }
  .logo-sub {
    font-size: 0.52rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: var(--navy-card);
    color: var(--gold-light);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 25, 41, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold-primary);
    padding: 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    animation: slideDownMobile 0.25s ease forwards;
  }

  @keyframes slideDownMobile {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-item {
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 3px solid transparent;
  }
  .nav-item:hover, .nav-item:focus {
    background: rgba(201, 151, 46, 0.1);
    border-left-color: var(--gold-primary);
    color: var(--gold-light);
  }

  .nav-btn {
    text-align: center;
    margin-top: 8px;
    padding: 12px;
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 60px 0 50px;
  }
  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-pills {
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-pill {
    background: rgba(201, 151, 46, 0.12);
    border: 1px solid rgba(201, 151, 46, 0.3);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
  }
  .hero-pill-dot {
    display: none;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 26px;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-btn-group a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.92rem;
  }

  /* Section Typography */
  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .section-title {
    font-size: clamp(1.6rem, 6vw, 1.95rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  /* Story & Stats */
  .story-lead {
    font-size: 0.98rem;
  }
  .story-body {
    font-size: 0.9rem;
  }
  .story-quote-card {
    padding: 16px 18px;
    margin-bottom: 20px;
  }
  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }

  /* Vision & Mission */
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .vm-box {
    padding: 24px 20px;
  }
  .vm-box .vm-header h3 {
    font-size: 1.2rem;
  }
  .vm-box p {
    font-size: 0.92rem;
  }

  /* Core Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .value-card {
    padding: 18px 12px;
  }
  .value-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .value-card h4 {
    font-size: 0.95rem;
  }
  .value-card p {
    font-size: 0.78rem;
  }

  /* Services */
  .services-grid-six {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-box {
    padding: 24px 20px;
  }
  .service-box-title {
    font-size: 1.15rem;
  }
  .service-box-text {
    font-size: 0.88rem;
  }

  /* Process Steps */
  .process-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .process-card {
    padding: 18px 10px;
    background: var(--cream-bg);
    border-radius: 8px;
    border: 1px solid var(--cream-border);
  }
  .process-circle {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .process-title {
    font-size: 1.05rem;
  }
  .process-desc {
    font-size: 0.8rem;
  }

  /* Why Choose Us */
  .why-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .why-highlight-box {
    padding: 16px 18px;
  }
  .why-highlight-box strong {
    font-size: 1rem;
  }
  .why-highlight-box p {
    font-size: 0.85rem;
  }
  .advantage-pill-card {
    padding: 16px;
    gap: 12px;
  }
  .advantage-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .advantage-pill-card h4 {
    font-size: 0.95rem;
  }
  .advantage-pill-card p {
    font-size: 0.8rem;
  }

  /* Leadership Team */
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
  .leader-card {
    padding: 28px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leader-avatar-circle {
    width: 106px;
    height: 106px;
    margin: 0 auto 16px auto;
  }
  .leader-name {
    font-size: 1.15rem;
  }
  .leader-role {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .leader-bio {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Clients */
  .clients-grid-nine {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .client-card {
    padding: 20px 18px;
  }
  .client-name {
    font-size: 1.1rem;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .package-card {
    padding: 30px 20px;
  }
  .package-card.package-featured {
    margin-top: 10px;
  }
  .package-title {
    font-size: 1.35rem;
  }
  .package-list li {
    font-size: 0.86rem;
  }
  .btn-package {
    padding: 14px;
    font-size: 0.92rem;
  }

  /* Contact & Form */
  .contact-banner-card {
    padding: 28px 18px;
    border-radius: 10px;
  }
  .contact-banner-title {
    font-size: 1.65rem;
  }
  .contact-banner-lead {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .info-value {
    font-size: 0.88rem;
    word-break: break-word;
  }
  .form-row-two {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-ctrl {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 12px 14px;
  }

  /* Consultant Aside */
  .consultant-portrait-card {
    padding: 24px 18px;
  }
  .portrait-circle {
    width: 96px;
    height: 96px;
  }
  .consultant-title {
    font-size: 1.15rem;
  }

  /* Footer */
  .footer {
    padding: 26px 0;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-logo {
    font-size: 0.8rem;
  }
  .footer-tagline {
    font-size: 0.75rem;
  }
}

/* Extra Small Phones (Max 420px) */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .process-timeline-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .story-stats-grid {
    grid-template-columns: 1fr;
  }
}