/* ==========================================================================
   HospiQ Healthcare Solutions - Million-Dollar Ultra-Premium System (v22.0)
   Design System: Deep Emerald & Sea-Mint Glassmorphism, Luxury Shimmer Effects,
                  Glowing Micro-Animations, Crisp Metallic Typography
   ========================================================================== */

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

:root {
  /* Ultra-Premium Color Tokens */
  --sea-midnight: #011512;
  --sea-darkest: #042621;
  --sea-darker: #073b34;
  --sea-dark: #004d40;
  --sea-medium: #00796b;
  --sea-primary: #00897b;
  --sea-light: #26a69a;
  --sea-lighter: #80cbc4;
  --sea-subtle: #e0f2f1;
  --sea-bg-light: #f2faf8;
  --sea-bg-soft: #eaf5f2;
  --sea-mint: #00bfa5;
  --sea-cyan: #18ffff;
  --sea-glow: rgba(0, 191, 165, 0.4);
  --sea-glow-soft: rgba(0, 191, 165, 0.15);

  /* Gold & Accent Metallic Tokens */
  --gold-accent: #d4af37;
  --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --mint-gradient: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
  --dark-glass-gradient: linear-gradient(135deg, rgba(4, 38, 33, 0.96) 0%, rgba(1, 21, 18, 0.98) 100%);

  /* Neutrals */
  --text-primary: #092420;
  --text-secondary: #2c4c47;
  --text-muted: #5c7e78;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(0, 191, 165, 0.2);
  --glass-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
  --glass-shadow-hover: 0 24px 50px rgba(0, 191, 165, 0.22);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Smooth Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Smooth Scroll */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--sea-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--sea-darkest);
  letter-spacing: -0.025em;
}

/* 1. LUXURY PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--sea-midnight);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-img {
  filter: drop-shadow(0 0 25px var(--sea-mint));
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--sea-mint)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 35px var(--sea-cyan)); }
}

.loader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50rem;
  overflow: hidden;
  position: relative;
}
.loader-progress {
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--sea-mint), var(--sea-cyan));
  border-radius: 50rem;
  position: absolute;
  left: -60%;
  animation: loader-slide 1.4s infinite ease-in-out;
}

@keyframes loader-slide {
  0% { left: -60%; width: 30%; }
  50% { width: 70%; }
  100% { left: 100%; width: 30%; }
}

/* 2. TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--sea-midnight);
  color: var(--sea-subtle);
  font-size: 0.84rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 191, 165, 0.2);
  letter-spacing: 0.02em;
}
.top-bar a {
  color: var(--sea-subtle);
  text-decoration: none;
  transition: var(--transition-fast);
}
.top-bar a:hover {
  color: var(--sea-mint);
}

/* 3. FLOATING GLASS NAVBAR */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}
.header-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 77, 64, 0.12);
  padding-top: 6px;
  padding-bottom: 6px;
}

.brand-official-logo {
  transition: var(--transition-smooth);
}
.brand-logo-wrapper:hover .brand-official-logo {
  transform: scale(1.04);
}

.nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary) !important;
  padding: 8px 16px !important;
  border-radius: 50rem;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--sea-darkest) !important;
  background: var(--sea-subtle);
}

/* 4. BUTTONS & SHIMMER SWEEP EFFECTS */
.btn-sea-primary {
  background: linear-gradient(135deg, var(--sea-mint) 0%, var(--sea-primary) 100%);
  color: var(--sea-midnight);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50rem;
  border: none;
  box-shadow: 0 8px 24px var(--sea-glow);
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.btn-sea-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  transition: var(--transition-smooth);
}
.btn-sea-primary:hover::after {
  left: 120%;
}
.btn-sea-primary:hover {
  background: linear-gradient(135deg, var(--sea-cyan) 0%, var(--sea-mint) 100%);
  color: var(--sea-darkest);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 191, 165, 0.45);
}

.btn-sea-outline {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-sea-outline:hover {
  background: var(--white);
  color: var(--sea-darkest);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.4);
}

.badge-sea {
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.25) 0%, rgba(0, 137, 123, 0.2) 100%);
  color: var(--sea-mint);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 7px 18px;
  border-radius: 50rem;
  border: 1px solid rgba(0, 191, 165, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.03em;
}

/* 5. HERO SECTION - FULL-BLEED LUXURY CAROUSEL */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--sea-midnight);
}

.carousel-item {
  height: 82vh;
  min-height: 580px;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.carousel-item.clear-view-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--sea-midnight);
}

.carousel-overlay-dark-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg, 
    rgba(1, 21, 18, 0.95) 0%, 
    rgba(4, 38, 33, 0.65) 45%, 
    rgba(1, 21, 18, 0.15) 100%
  );
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 660px;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--sea-cyan) 0%, var(--sea-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* 6. STATS BAR - FLOATING GLASS CONTAINER */
.stat-bar-wrapper {
  margin-top: -55px;
  position: relative;
  z-index: 25;
}
.stat-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 20px;
  box-shadow: 0 16px 40px rgba(0, 77, 64, 0.1);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition-bounce);
  height: 100%;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover);
  border-color: var(--sea-mint);
}
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sea-subtle) 0%, #c8e6c9 100%);
  color: var(--sea-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 14px auto;
  box-shadow: 0 6px 18px rgba(0, 137, 123, 0.15);
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--sea-darkest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-secondary);
}

/* 7. SECTION STYLING */
.section-padding {
  padding: 95px 0;
}
.section-header {
  margin-bottom: 55px;
}
.section-subtitle {
  color: var(--sea-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--sea-darkest);
  font-weight: 900;
}
.section-description {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 700px;
}

/* 8. ABOUT US SECTION - PARALLEL CONTENT & GLASS CONTAINER */
.about-parallel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-banner-col-box {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 77, 64, 0.16);
  border: 3px solid var(--white);
  height: 100%;
  min-height: 490px;
  background: var(--sea-midnight);
}
.about-banner-col-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--transition-smooth);
}
.about-banner-col-box:hover img {
  transform: scale(1.04);
}

.about-banner-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(1, 21, 18, 0.93);
  backdrop-filter: blur(14px);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 191, 165, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* 9. MISSION, VISION & QUALITY POLICY CARDS */
.mv-section-bg {
  background: linear-gradient(180deg, #f2faf8 0%, #e2f2ee 100%);
}

.mv-box-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 36px rgba(0, 77, 64, 0.08);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}
.mv-box-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sea-primary), var(--sea-mint), var(--sea-cyan));
}
.mv-box-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glass-shadow-hover);
  border-color: var(--sea-mint);
}

.mv-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sea-subtle) 0%, #b2dfdb 100%);
  color: var(--sea-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 24px;
  border: 1.5px solid rgba(0, 137, 123, 0.25);
  box-shadow: 0 8px 20px rgba(0, 137, 123, 0.12);
}

.mv-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sea-darkest);
  margin-bottom: 16px;
}

.mv-card-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* 10. SERVICES SECTION */
.services-filter-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--white);
  color: var(--sea-dark);
  border: 1.5px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sea-primary);
  color: var(--white);
  border-color: var(--sea-primary);
  box-shadow: 0 8px 22px rgba(0, 137, 123, 0.25);
}

.service-card-v2 {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 32px rgba(0, 77, 64, 0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
}
.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover);
  border-color: var(--sea-mint);
}
.service-card-img-wrapper {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.service-card-v2:hover .service-card-img-wrapper img {
  transform: scale(1.08);
}

.service-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(1, 21, 18, 0.88);
  backdrop-filter: blur(10px);
  color: var(--sea-mint);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50rem;
  border: 1px solid rgba(0, 191, 165, 0.35);
}

.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sea-darkest);
  margin-bottom: 16px;
}
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-feature-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-feature-list li i {
  color: var(--sea-primary);
  margin-top: 4px;
}

/* 11. NAMELESS BOARD OF DIRECTORS CARDS */
.directors-section-bg {
  background: #ebf7f4;
}

.director-card-text {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 36px rgba(0, 77, 64, 0.07);
  padding: 35px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}
.director-card-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sea-primary), var(--sea-mint));
}
.director-card-text:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover);
  border-color: var(--sea-mint);
}

.director-monogram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.director-monogram {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sea-midnight) 0%, var(--sea-dark) 100%);
  color: var(--sea-mint);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 77, 64, 0.2);
  border: 2px solid var(--sea-mint);
}

.director-badge-label {
  background: var(--sea-subtle);
  color: var(--sea-darkest);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50rem;
}

.director-name-heading {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--sea-darkest);
  margin-bottom: 4px;
}
.director-role-subtext {
  color: var(--sea-primary);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.director-qual-pill {
  background: #f0faf7;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 137, 123, 0.15);
}

.director-skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.director-skill-badge {
  background: var(--sea-subtle);
  color: var(--sea-darkest);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.director-bio-summary {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.btn-director-text-modal {
  background: transparent;
  border: none;
  color: var(--sea-primary);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}
.btn-director-text-modal:hover {
  color: var(--sea-darkest);
  transform: translateX(4px);
}

/* 12. ORGANOGRAM TREE - EXACT RECREATION OF PDF PAGE 9 */
.organogram-pdf-tree-section {
  background: var(--white);
  position: relative;
}

.organogram-pdf-tree-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.organogram-node-md {
  background: linear-gradient(135deg, #ff9800 0%, #ed6c02 100%);
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  padding: 16px 50px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(237, 108, 2, 0.4);
  border: 3px solid #fff;
  text-align: center;
  z-index: 10;
}

.organogram-vertical-line-sm {
  width: 3px;
  height: 30px;
  background: #042621;
}

.organogram-horizontal-line-lg {
  height: 3px;
  background: #042621;
  width: 82%;
  max-width: 780px;
}

.organogram-three-branches-row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 0;
}

.organogram-branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 290px;
}

.organogram-node-director {
  background: linear-gradient(135deg, #ffe082 0%, #ffca28 100%);
  color: #3e2723;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  border: 1.5px solid #ffd54f;
  width: 92%;
}

.organogram-node-finance {
  background: linear-gradient(135deg, #ffe082 0%, #ffca28 100%);
  color: #3e2723;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  border: 1.5px solid #ffd54f;
  width: 92%;
}

.organogram-node-advisor {
  background: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
  color: #042621;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 176, 255, 0.3);
  text-align: center;
  width: 96%;
}

.organogram-node-consultant {
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  color: #1b5e20;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 96%;
}

.organogram-node-peo {
  background: linear-gradient(135deg, #dce775 0%, #c0ca33 100%);
  color: #33691e;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  width: 92%;
}

.organogram-node-pa {
  background: linear-gradient(135deg, #18ffff 0%, #00e676 100%);
  color: #004d40;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 230, 118, 0.3);
  text-align: center;
  flex: 1;
}

/* 13. ACHIEVEMENTS BANNER */
.achievement-banner-light {
  background: linear-gradient(135deg, var(--sea-midnight) 0%, var(--sea-dark) 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 48px 36px;
  border: 1.5px solid rgba(0, 191, 165, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cert-badge-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

/* 14. PHOTO & MEDIA GALLERY SECTION */
.gallery-section-bg {
  background: var(--white);
}

.gallery-grid-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 77, 64, 0.09);
  border: 1px solid var(--glass-border);
  position: relative;
  height: 270px;
  transition: var(--transition-bounce);
}
.gallery-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-grid-card:hover img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(1, 21, 18, 0.95) 100%);
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

/* 15. CONTACT FORM & GLASS CARDS */
.contact-section-bg {
  background: #e5f4f0;
}

.contact-card-glass {
  background: var(--white);
  border-radius: 26px;
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(0, 77, 64, 0.09);
}

.form-floating-custom .form-control {
  border-radius: 14px;
  border: 1.5px solid rgba(0, 137, 123, 0.22);
  padding: 16px 18px;
  height: auto;
  font-size: 0.98rem;
  background-color: #f7fbfd;
  transition: var(--transition-fast);
}
.form-floating-custom .form-control:focus {
  background-color: var(--white);
  border-color: var(--sea-mint);
  box-shadow: 0 0 0 4px var(--sea-glow-soft);
}

.service-radio-btn {
  display: none;
}
.service-radio-label {
  background: #f0faf7;
  border: 1.5px solid rgba(0, 137, 123, 0.2);
  padding: 8px 16px;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sea-darkest);
  cursor: pointer;
  transition: var(--transition-fast);
}
.service-radio-btn:checked + .service-radio-label {
  background: var(--sea-primary);
  color: var(--white);
  border-color: var(--sea-primary);
  box-shadow: 0 4px 14px rgba(0, 137, 123, 0.3);
}

.address-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 26px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 77, 64, 0.05);
}
.address-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sea-subtle);
  color: var(--sea-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* 16. ULTRA-PREMIUM FOOTER SYSTEM */
.footer-wrapper-v17 {
  background: linear-gradient(180deg, var(--sea-midnight) 0%, #000c0a 100%);
  color: var(--sea-subtle);
  position: relative;
  border-top: 4px solid var(--sea-mint);
}

.footer-cta-banner-card {
  background: linear-gradient(135deg, var(--sea-dark) 0%, var(--sea-midnight) 100%);
  border-radius: 26px;
  padding: 40px 45px;
  border: 1.5px solid rgba(0, 191, 165, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-top: -65px;
  position: relative;
  z-index: 30;
}

.footer-main-body {
  padding-top: 65px;
  padding-bottom: 50px;
}

.footer-official-logo {
  height: 54px;
  width: auto;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-column-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--sea-mint);
  border-radius: 3px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 12px;
}
.footer-nav-list a {
  color: rgba(224, 242, 241, 0.85);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-list a:hover {
  color: var(--sea-mint);
  transform: translateX(4px);
}

.footer-cert-pill-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 165, 0.3);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.84rem;
  color: var(--sea-lighter);
  margin-top: 18px;
}

.footer-office-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}
.footer-office-card:hover {
  background: rgba(0, 191, 165, 0.12);
  border-color: var(--sea-mint);
}

.footer-bottom-compliance-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px 0;
  font-size: 0.88rem;
  color: rgba(224, 242, 241, 0.75);
}

.back-to-top-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sea-mint);
  color: var(--sea-midnight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.35);
  transition: var(--transition-bounce);
}
.back-to-top-btn:hover {
  background: var(--white);
  color: var(--sea-darkest);
  transform: translateY(-4px);
}

/* 17. FLOATING ACTIONS */
.fixed-floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.45rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-bounce);
}
.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp { background: #25d366; }
.float-call { background: var(--sea-primary); }

/* Mobile Responsive */
@media (max-width: 991px) {
  .organogram-three-branches-row {
    flex-direction: column;
    gap: 30px;
  }
  .organogram-branch-col {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
}
