/* ==========================================================================
   LUMBINI TEA VALLEY CEYLON — EXECUTIVE DIGITAL NFC PROFILE
   Chaminda Jayawardana | Managing Director
   Digital Palette derived from authentic visual materials
   ========================================================================== */

:root {
  /* Foundation & Dark Palette */
  --bg-base: #070e16;
  --bg-surface-1: #0d1722;
  --bg-surface-2: #142332;
  --bg-surface-3: #1a2c3e;
  --bg-card: rgba(18, 32, 46, 0.78);
  --bg-card-hover: rgba(24, 42, 60, 0.88);

  /* Ceylon Amber Gold Accents */
  --gold-primary: #c5a059;
  --gold-light: #e0be7c;
  --gold-dark: #9e7d3b;
  --gold-glow: rgba(197, 160, 89, 0.18);
  --gold-border: rgba(197, 160, 89, 0.32);
  --gold-border-subtle: rgba(197, 160, 89, 0.16);

  /* Rainforest Botanical Accent */
  --botanical-deep: #12241d;
  --botanical-accent: #234235;
  --botanical-border: rgba(45, 82, 66, 0.35);

  /* Porcelain & Warm Silk */
  --porcelain: #fbf9f5;
  --porcelain-muted: #eae5dc;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #dfb96f;

  /* Typography Families */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Dimensions */
  --max-width: 680px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Safe Area Support */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-base);
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: calc(85px + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Atmosphere */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(20, 44, 66, 0.5) 0%, rgba(18, 36, 29, 0.25) 45%, transparent 70%);
  filter: blur(80px);
  opacity: 0.7;
}

.ambient-glow-gold {
  position: absolute;
  top: 35%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
  filter: blur(90px);
}

/* App Container */
.app-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}

/* Top Utility Header */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0 0.9rem;
}

.brand-crest-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-crest-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  transition: var(--transition-fast);
}

.brand-crest-link:hover .brand-crest-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(197, 160, 89, 0.6));
}

.brand-tag-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-tag-primary {
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 3.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-tag-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.3;
}

.share-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border-subtle);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.share-action-btn:hover,
.share-action-btn:focus-visible {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ==========================================================================
   1. HERO EXECUTIVE CARD
   ========================================================================== */
.hero-card {
  position: relative;
  background: linear-gradient(175deg, rgba(20, 36, 50, 0.96) 0%, rgba(13, 23, 34, 0.98) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
  margin-bottom: 2rem;
}

.hero-backdrop-container {
  position: relative;
  height: 195px;
  width: 100%;
  overflow: hidden;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.86) contrast(1.08) saturate(1.18);
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero-card:hover .hero-backdrop-img {
  transform: scale(1.08);
}

.hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 14, 22, 0.18) 0%,
    rgba(7, 14, 22, 0.05) 30%,
    rgba(13, 23, 34, 0.45) 68%,
    rgba(13, 23, 34, 0.85) 88%,
    #0d1722 100%
  );
}

.hero-badge-strip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 14, 22, 0.88);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.hero-badge-strip svg {
  color: var(--gold-primary);
}

.hero-content {
  position: relative;
  padding: 0 1rem 1.6rem;
  text-align: center;
  margin-top: -65px;
}

/* Executive Portrait Frame */
.portrait-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.portrait-ring {
  width: 124px;
  height: 124px;
  border-radius: var(--radius-pill);
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65), 0 0 18px var(--gold-glow);
}

.portrait-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg-surface-1);
  border: 2px solid #070e16;
}

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

.verified-executive-badge {
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: #0d1722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
}

/* Executive Titles */
.hero-title-group {
  margin-bottom: 1.15rem;
}

.executive-name {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 5.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.executive-role {
  font-size: clamp(0.75rem, 3vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.executive-company {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 3.6vw, 1.02rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero-heritage-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px 6px;
  margin-top: 0.55rem;
  font-size: clamp(0.6rem, 2.2vw, 0.72rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-heritage-tagline span {
  display: inline-block;
}

.bullet-separator {
  color: var(--gold-primary);
  opacity: 0.8;
}

/* Hero Quick Actions */
.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.btn-primary-vcard {
  width: 100%;
  background: linear-gradient(135deg, #c5a059 0%, #a67c33 100%);
  color: #070e16;
  font-weight: 700;
  font-size: clamp(0.78rem, 2.7vw, 0.88rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.78rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
  transition: var(--transition-fast);
}

.btn-primary-vcard:hover,
.btn-primary-vcard:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
  background: linear-gradient(135deg, #d8b26e 0%, #b88d44 100%);
}

.btn-secondary-action {
  flex: 1 1 110px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border-subtle);
  color: var(--text-primary);
  font-size: clamp(0.72rem, 2.4vw, 0.82rem);
  font-weight: 600;
  padding: 0.68rem 0.35rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary-action:hover,
.btn-secondary-action:focus-visible {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-1.5px);
}

.btn-secondary-action svg {
  flex-shrink: 0;
}

/* ==========================================================================
   2. SECTION ARCHITECTURE & SHARED MODULES
   ========================================================================== */
.section-wrapper {
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 1.15rem;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 4.5vw, 1.45rem);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 50%, transparent 100%);
}

/* ==========================================================================
   2. HERITAGE & KEY CREDENTIALS PILLARS
   ========================================================================== */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.credential-item {
  background: rgba(13, 23, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.credential-item:hover {
  border-color: var(--gold-border);
  background: rgba(19, 34, 49, 0.85);
  transform: translateY(-2px);
}

.credential-icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.credential-label {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ==========================================================================
   3. EXECUTIVE STEWARDSHIP (CHAMINDA JAYAWARDANA)
   ========================================================================== */
.executive-spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.spotlight-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border-subtle);
  background: #09131d;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.spotlight-media-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.spotlight-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 14, 22, 0.94) 0%, rgba(7, 14, 22, 0.6) 75%, transparent 100%);
  padding: 1.5rem 1rem 0.65rem;
  font-size: 0.74rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.spotlight-caption strong {
  color: var(--gold-light);
}

.executive-prose {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.executive-prose p:not(:last-child) {
  margin-bottom: 0.85rem;
}

.executive-prose strong {
  color: var(--text-white);
  font-weight: 600;
}

/* ==========================================================================
   4. TERROIR & ARTISANAL CRAFT SHOWCASE (GALLERY)
   ========================================================================== */
.craft-narrative {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.craft-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border-subtle);
  background: #0d1722;
  transition: var(--transition-fast);
  cursor: pointer;
}

.craft-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.craft-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.craft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craft-card:hover .craft-img {
  transform: scale(1.08);
}

.craft-meta {
  padding: 0.65rem 0.75rem 0.8rem;
  background: rgba(13, 23, 34, 0.95);
}

.craft-step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

.craft-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 0.1rem;
  line-height: 1.25;
}

/* ==========================================================================
   5. VERIFIED AWARDS & RECOGNITION
   ========================================================================== */
.award-banner-highlight {
  background: linear-gradient(135deg, rgba(35, 66, 53, 0.4) 0%, rgba(13, 23, 34, 0.8) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.award-trophy-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-trophy-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.award-banner-text {
  flex: 1;
}

.award-banner-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.award-banner-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem;
  background: rgba(10, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.award-entry:hover {
  border-color: var(--gold-border-subtle);
  background: rgba(16, 28, 40, 0.75);
}

.award-badge-seal {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.award-entry-content {
  flex: 1;
}

.award-name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

.award-detail {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ==========================================================================
   6. INTERNATIONAL TRADE & HORECA PATHWAYS
   ========================================================================== */
.trade-intro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.trade-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trade-card {
  background: rgba(12, 22, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: var(--transition-fast);
}

.trade-card:hover {
  border-color: var(--gold-border);
  background: rgba(18, 32, 46, 0.85);
}

.trade-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.trade-card-icon {
  color: var(--gold-light);
}

.trade-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

.trade-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.trade-cta-row {
  margin-top: 1.25rem;
  text-align: center;
}

/* ==========================================================================
   7. BRAND FILM (VIDEO PLAYER)
   ========================================================================== */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border-subtle);
  background: var(--bg-surface-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

.video-poster-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #050a10;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-poster-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.video-poster-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.72) contrast(1.05);
  transform: scale(1.01);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.video-poster-wrap:hover .video-poster-img {
  transform: scale(1.04);
  filter: brightness(0.82) contrast(1.08);
}

.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 14, 22, 0.2) 0%, rgba(7, 14, 22, 0.75) 100%);
  pointer-events: none;
}

.video-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  pointer-events: none;
}

.video-play-glow-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #070e16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* visually center play triangle */
  box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 24px var(--gold-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-poster-wrap:hover .video-play-glow-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.7), 0 0 32px rgba(197, 160, 89, 0.6);
}

.video-play-caption {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  background: rgba(7, 14, 22, 0.75);
  border: 1px solid var(--gold-border-subtle);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.video-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(7, 14, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.video-meta-bar {
  padding: 1rem 1.25rem;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.video-meta-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.video-meta-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.video-ext-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border-subtle);
  color: var(--gold-light);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.video-ext-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  color: var(--text-white);
}

.video-primary-btn {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18) 0%, rgba(197, 160, 89, 0.08) 100%);
  border-color: var(--gold-primary);
  color: var(--text-white);
}

.video-primary-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #070e16;
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ==========================================================================
   8. EXECUTIVE & CORPORATE CONTACT HUB
   ========================================================================== */
.contact-hub-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-category-card {
  background: rgba(13, 23, 34, 0.85);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.contact-category-card.executive-direct {
  border-color: var(--gold-border);
  background: linear-gradient(170deg, rgba(20, 36, 50, 0.95) 0%, rgba(13, 23, 34, 0.95) 100%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.contact-header-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #34d399;
}

.contact-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  background: rgba(7, 14, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.contact-row-item:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: var(--gold-border-subtle);
  transform: translateX(3px);
}

.contact-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.contact-icon {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-type {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-action-symbol {
  color: var(--gold-primary);
  opacity: 0.7;
  flex-shrink: 0;
}

.contact-row-item:hover .contact-action-symbol {
  opacity: 1;
  transform: translateX(2px);
}

/* ==========================================================================
   9. SOCIAL CHANNELS ECOSYSTEM
   ========================================================================== */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 540px) {
  .social-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-link-btn {
  background: rgba(13, 23, 34, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.95rem 0.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.social-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-link-btn:hover .social-icon-box {
  transform: scale(1.1);
}

.social-btn-linkedin:hover {
  border-color: rgba(10, 102, 194, 0.6);
  background: rgba(10, 102, 194, 0.12);
  box-shadow: 0 4px 18px rgba(10, 102, 194, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-btn-instagram:hover {
  border-color: rgba(214, 36, 159, 0.6);
  background: rgba(214, 36, 159, 0.12);
  box-shadow: 0 4px 18px rgba(214, 36, 159, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-btn-facebook:hover {
  border-color: rgba(24, 119, 242, 0.6);
  background: rgba(24, 119, 242, 0.12);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-btn-youtube:hover {
  border-color: rgba(255, 0, 0, 0.6);
  background: rgba(255, 0, 0, 0.12);
  box-shadow: 0 4px 18px rgba(255, 0, 0, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-platform-name {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   10. OFFICIAL WEBSITE CARD
   ========================================================================== */
.website-gateway-card {
  background: linear-gradient(135deg, rgba(13, 23, 34, 0.9) 0%, rgba(20, 36, 50, 0.8) 100%);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: 1rem;
}

.website-gateway-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px var(--gold-glow);
  transform: translateY(-1.5px);
}

.website-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.website-globe-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.website-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.website-url {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.website-arrow {
  color: var(--gold-primary);
}

/* ==========================================================================
   11. FOOTER & AAKIN DIGITAL SIGNATURE
   ========================================================================== */
.profile-footer {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand-mark {
  height: 38px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.aakin-signature-wrapper {
  margin-top: 0.5rem;
}

.aakin-signature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
}

.aakin-signature-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-border-subtle);
  background: rgba(197, 160, 89, 0.08);
}

/* ==========================================================================
   12. MOBILE QUICK ACTION DOCK (STICKY BOTTOM)
   ========================================================================== */
.mobile-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 14, 22, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border-subtle);
  padding: 0.65rem 1rem calc(0.65rem + var(--safe-bottom));
  display: flex;
  justify-content: center;
}

.dock-container {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: space-between;
}

.dock-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.25rem;
  border-radius: var(--radius-md);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.dock-btn svg {
  flex-shrink: 0;
}

.dock-btn-vcard {
  flex: 1.3;
  background: linear-gradient(135deg, #c5a059 0%, #a67c33 100%);
  color: #070e16;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.35);
}

.dock-btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.dock-btn-call {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.dock-btn-share {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.dock-btn:active {
  transform: scale(0.96);
}

/* ==========================================================================
   13. LIGHTBOX & SHARE MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 9, 14, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.15);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.modal-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.share-copy-box {
  display: flex;
  align-items: center;
  background: rgba(7, 14, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.5rem 0.4rem 0.85rem;
  gap: 0.5rem;
}

.share-copy-url {
  font-size: 0.82rem;
  color: var(--gold-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
}

.btn-copy-link {
  background: var(--gold-primary);
  color: #070e16;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy-link:hover {
  background: var(--gold-light);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: #142332;
  border: 1px solid var(--gold-primary);
  color: var(--text-white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px var(--gold-glow);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Lightbox Modal for Gallery */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
  max-width: 500px;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* Desktop / Tablet Optimization */
@media (min-width: 769px) {
  .hero-backdrop-container {
    height: 220px;
  }
  .mobile-dock {
    display: none !important;
  }
  body {
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .app-container {
    padding: 0 0.65rem 2rem;
  }

  .hero-content {
    padding: 0 0.65rem 1.4rem;
  }

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

  .dock-container {
    grid-template-columns: 1.25fr 1fr 1fr 0.75fr;
    gap: 0.35rem;
  }

  .dock-btn {
    padding: 0.6rem 0.35rem;
    font-size: 0.72rem;
  }

  .dock-btn span {
    display: inline;
  }
}

@media (max-width: 360px) {
  .hero-card {
    border-radius: var(--radius-md);
  }

  .executive-name {
    font-size: 1.16rem;
  }

  .hero-action-buttons {
    grid-template-columns: 1fr;
  }

  .btn-primary-vcard {
    grid-column: span 1;
    font-size: 0.78rem;
    padding: 0.75rem 0.5rem;
  }

  .btn-secondary-action {
    font-size: 0.76rem;
    padding: 0.65rem 0.5rem;
  }

  .dock-btn span {
    display: none !important;
  }
  
  .dock-btn {
    padding: 0.65rem;
  }

  .dock-btn-vcard span {
    display: inline !important;
    font-size: 0.7rem;
  }
}
