/* ============================================================
   OCEAN BLUE GROUP — Main Stylesheet
   Design: Modern · Elegant · Peaceful · Animated
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --ocean-cyan:    #00B4D8;
  --ocean-blue:    #0077B6;
  --ocean-deep:    #023E8A;
  --ocean-dark:    #0A1628;
  --ocean-darker:  #060D1A;
  --ocean-accent:  #48CAE4;
  --gold:          #C9A84C;
  --gold-light:    #F0D080;

  /* Light Mode */
  --bg-primary:    #F8FAFE;
  --bg-secondary:  #EEF4FF;
  --bg-card:       #FFFFFF;
  --text-primary:  #0A1628;
  --text-secondary:#4A5568;
  --text-muted:    #718096;
  --border:        rgba(0,119,182,0.15);
  --shadow:        0 4px 30px rgba(0,119,182,0.12);
  --shadow-hover:  0 12px 50px rgba(0,119,182,0.25);

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #00B4D8 0%, #0077B6 50%, #023E8A 100%);
  --grad-gold:     linear-gradient(135deg, #C9A84C 0%, #F0D080 100%);
  --grad-dark:     linear-gradient(135deg, #0A1628 0%, #023E8A 100%);
  --grad-hero:     linear-gradient(135deg, rgba(2,62,138,0.92) 0%, rgba(0,119,182,0.85) 50%, rgba(0,180,216,0.80) 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-head:    'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container: 1280px;
  --radius:    16px;
  --radius-sm: 8px;

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.4s;
}

/* ── Dark Mode Variables ── */
[data-theme="dark"] {
  --bg-primary:    #060D1A;
  --bg-secondary:  #0A1628;
  --bg-card:       #0F1F3D;
  --text-primary:  #F0F4FF;
  --text-secondary:#B8C8E8;
  --text-muted:    #7A93BC;
  --border:        rgba(0,180,216,0.2);
  --shadow:        0 4px 30px rgba(0,0,0,0.4);
  --shadow-hover:  0 12px 50px rgba(0,180,216,0.2);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: clip;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

/* ── Animated Background Canvas ── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

[data-theme="dark"] #bg-canvas { opacity: 0.5; }

/* ── All content above canvas ── */
body > *:where(:not(#bg-canvas)) { position: relative; z-index: 1; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ocean-cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title span { 
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 30px rgba(0,119,182,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,119,182,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--ocean-blue);
  border: 2px solid var(--ocean-blue);
}
.btn-outline:hover {
  background: var(--ocean-blue);
  color: #fff;
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--grad-gold);
  color: #1a1000;
  box-shadow: 0 6px 25px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.5);
}

/* ──────────────────────────────────────
   HEADER TOP BAR (Section 1)
──────────────────────────────────────── */
#top-bar {
  background: var(--ocean-dark);
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,180,216,0.2);
  position: relative;
  z-index: 200;
}

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

.top-contact {
  display: flex;
  gap: 28px;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.top-contact-item:hover { color: var(--ocean-cyan); }
.top-contact-item i {
  font-size: 14px;
  color: var(--ocean-cyan);
}

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

.top-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--duration) var(--ease-out);
}
.btn-signin:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-1px);
}
[data-theme="light"] .btn-signin {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-primary);
}

.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  width: 42px; height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.3s;
  flex-shrink: 0;
}
.theme-toggle.dark-active { background: var(--ocean-cyan); border-color: var(--ocean-cyan); }
.theme-toggle::after {
  content: '';
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.theme-toggle.dark-active::after { transform: translateX(20px); }

.theme-label {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s var(--ease-out);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}
.social-btn:hover { transform: translateY(-3px) scale(1.1); }
.social-btn.fb:hover  { background: #1877F2; border-color: #1877F2; }
.social-btn.ig:hover  { background: linear-gradient(135deg,#E1306C,#833AB4,#FD1D1D); border-color: transparent; }
.social-btn.li:hover  { background: #0A66C2; border-color: #0A66C2; }
.social-btn.tw:hover  { background: #000; border-color: #000; }

/* ──────────────────────────────────────
   NAVIGATION (Section 2)
──────────────────────────────────────── */
#main-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 199;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

[data-theme="dark"] #main-nav {
  background: rgba(10,22,40,0.95);
}

#main-nav.scrolled .nav-inner { height: 68px; }
#main-nav.scrolled .nav-logo { height: 54px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.nav-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,119,182,0.25));
  transition: transform 0.4s var(--ease-out), filter 0.4s;
  animation: logoFloat 4.5s ease-in-out infinite;
}
.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 18px rgba(0,119,182,0.4));
  animation-play-state: paused;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-5px); }
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}

.nav-item { position: relative; }

.nav-mobile-extra { display: none; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
  color: var(--ocean-blue);
  background: rgba(0,119,182,0.08);
}

.nav-link i.arrow {
  font-size: 10px;
  transition: transform 0.3s;
}
.nav-item:hover .nav-link i.arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 10px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  z-index: 300;
  pointer-events: none;
}

/* Invisible bridge so the cursor doesn't lose :hover while crossing the gap
   between the nav link and the dropdown panel below it. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

[data-theme="dark"] .nav-dropdown {
  background: var(--bg-card);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  background: rgba(0,119,182,0.08);
  color: var(--ocean-blue);
  padding-left: 20px;
}
.nav-dropdown a i {
  font-size: 12px;
  color: var(--ocean-cyan);
  width: 18px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ──────────────────────────────────────
   HERO SLIDER (Section 3)
──────────────────────────────────────── */
#hero-slider {
  position: relative;
  /* Image ratio is 1500x625 = 2.4:1 → height = width / 2.4 = 41.67vw */
  height: clamp(320px, 41.67vw, 680px);
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-size: cover;
  background-position: center center;
}

.slide-1 { background-image: url('../images/slider/slide-property.jpeg'); }
.slide-2 { background-image: url('../images/slider/slide-hotel-resort.jpeg'); }
.slide-3 { background-image: url('../images/slider/slide-agro.jpeg'); }
.slide-4 { background-image: url('../images/slider/slide-dairy-main.jpeg'); }
.slide-5 { background-image: url('../images/slider/slide-tours-travel.jpeg'); }
.slide-6 { background-image: url('../images/slider/slide-ocean-tv.jpeg'); }
.slide-7 { background-image: url('../images/slider/slide-daily-news.jpeg'); }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,10,25,0.55) 0%, rgba(2,10,25,0.05) 35%, transparent 60%);
}
.slide::after { display: none; }

.slide-content {
  text-align: left;
  color: #fff;
  padding: 0 60px 70px;
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.slide-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ocean-accent);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out) 0.1s;
}
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out) 0.25s;
}
.slide-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out) 0.4s;
}
.slide.active .slide-eyebrow,
.slide.active .slide-heading,
.slide.active .slide-sub {
  opacity: 1; transform: translateY(0);
}

/* Slider Nav */
.slider-nav {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

/* ──────────────────────────────────────
   MARQUEE SCROLLBAR
──────────────────────────────────────── */
#marquee-bar {
  background: var(--grad-primary);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.marquee-item::before {
  content: '◆';
  font-size: 8px;
  color: var(--gold-light);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────
   WHY US SECTION
──────────────────────────────────────── */
#why-us {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.why-us-text .section-desc { max-width: 100%; }

.why-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease-out);
}
.why-feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,180,216,0.15) 0%, rgba(0,119,182,0.15) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ocean-blue);
  flex-shrink: 0;
  border: 1px solid rgba(0,180,216,0.2);
}
.why-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}
.why-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ──────────────────────────────────────
   MD MESSAGE SECTION
──────────────────────────────────────── */
#md-message {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#md-message::before {
  content: '"';
  position: absolute;
  top: -40px; left: 40px;
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(0,119,182,0.05);
  line-height: 1;
  pointer-events: none;
}

.message-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.message-image-wrap {
  position: relative;
}
.message-image-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}
.message-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.message-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.08;
  z-index: 1;
}

/* Decorative corner */
.image-corner-decor {
  position: absolute;
  width: 100px; height: 100px;
  border: 3px solid var(--ocean-cyan);
  border-radius: 4px;
  opacity: 0.4;
}
.image-corner-decor.tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.image-corner-decor.br { bottom: -12px; right: -12px; border-left: none; border-top: none; }

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(0,119,182,0.15) 0%, rgba(0,180,216,0.1) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  color: var(--text-muted);
  gap: 12px;
}
.img-placeholder i { font-size: 48px; color: var(--ocean-blue); opacity: 0.4; }
.img-placeholder span { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }

.placeholder-monogram {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--ocean-blue);
  opacity: 0.35;
  letter-spacing: 2px;
}

.message-name-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-primary);
  color: #fff;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,119,182,0.4);
  z-index: 2;
}
.message-name-card .name { font-size: 16px; font-weight: 700; }
.message-name-card .role { font-size: 12px; opacity: 0.85; margin-top: 2px; }

.message-content .section-label { margin-bottom: 8px; }

.message-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 24px 0 32px;
  padding-left: 24px;
  border-left: 3px solid var(--ocean-cyan);
  font-style: italic;
}

.message-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.sig-line {
  width: 60px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.sig-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ──────────────────────────────────────
   CHAIRMAN MESSAGE (reversed)
──────────────────────────────────────── */
#chairman-message {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#chairman-message .message-grid {
  grid-template-columns: 1fr 420px;
}

/* ──────────────────────────────────────
   MISSION & VISION
──────────────────────────────────────── */
#mission-vision {
  padding: var(--section-py) 0;
  background: var(--ocean-dark);
  position: relative;
  overflow: hidden;
}

#mission-vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300B4D8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#mission-vision .section-title { color: #fff; }
#mission-vision .section-label { color: var(--ocean-accent); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  backdrop-filter: blur(10px);
}
.mv-card:hover {
  transform: translateY(-10px);
  background: rgba(0,119,182,0.15);
  border-color: var(--ocean-cyan);
  box-shadow: 0 20px 60px rgba(0,180,216,0.2);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.mv-card:hover::before { transform: scaleX(1); }

.mv-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,180,216,0.2), rgba(0,119,182,0.2));
  border: 1px solid rgba(0,180,216,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: var(--ocean-cyan);
}
.mv-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
}

/* ──────────────────────────────────────
   OUR CONCERNS
──────────────────────────────────────── */
#our-concerns {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.concerns-header {
  text-align: center;
  margin-bottom: 60px;
}
.concerns-header .section-desc { margin: 0 auto; }

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

.concern-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.concern-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}

/* Logo showcase top panel */
.concern-logo-wrap {
  height: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  transition: padding 0.4s var(--ease-out);
}
.concern-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}
.concern-card:hover .concern-logo-wrap { padding: 18px 28px; }

.concern-logo-img {
  max-width: 100%;
  max-height: 136px;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.18));
}
.concern-card:hover .concern-logo-img { transform: scale(1.07); }

/* Legacy .concern-img for tour card which uses photo */
.concern-img {
  height: 186px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.concern-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.6s var(--ease-out);
}
.concern-card:hover .concern-img img { transform: scale(1.08); }
.concern-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(2,62,138,0.55) 100%);
}

.concern-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.concern-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean-cyan);
  margin-bottom: 8px;
}
.concern-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.concern-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.concern-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean-blue);
  transition: gap 0.2s, color 0.2s;
}
.concern-card:hover .concern-arrow { gap: 12px; color: var(--ocean-cyan); }


/* ──────────────────────────────────────
   FOOD PRODUCTION PROCESS
──────────────────────────────────────── */
#food-process {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.process-header { text-align: center; margin-bottom: 60px; }

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 10px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ocean-cyan), var(--ocean-blue), transparent);
}

.process-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--ocean-cyan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all var(--duration) var(--ease-out);
  box-shadow: var(--shadow);
}
.process-step:hover .step-circle {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(0,119,182,0.35);
}
.step-circle i { font-size: 28px; color: var(--ocean-blue); transition: color 0.3s; }
.process-step:hover .step-circle i { color: #fff; }
.step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--ocean-cyan);
  letter-spacing: 1px;
  position: absolute;
  top: -8px; right: -8px;
  background: var(--bg-card);
  border: 1px solid var(--ocean-cyan);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──────────────────────────────────────
   COMPLIANCE
──────────────────────────────────────── */
#compliance {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.compliance-header { text-align: center; margin-bottom: 60px; }

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

.compliance-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.compliance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}
.compliance-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--grad-primary);
  opacity: 0.05;
  transition: height 0.4s var(--ease-out);
}
.compliance-card:hover::before { height: 100%; }

.compliance-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  position: relative;
}
.compliance-icon.food    { background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,119,182,0.15)); color: var(--ocean-blue); }
.compliance-icon.realestate { background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(240,208,128,0.15)); color: var(--gold); }
.compliance-icon.hotel   { background: linear-gradient(135deg, rgba(2,62,138,0.15), rgba(0,180,216,0.15)); color: var(--ocean-deep); }

.compliance-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  position: relative;
}
.compliance-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0,119,182,0.1);
  color: var(--ocean-blue);
  border: 1px solid rgba(0,119,182,0.2);
  letter-spacing: 0.5px;
}

/* ──────────────────────────────────────
   BLOG
──────────────────────────────────────── */
#blog {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.blog-header { text-align: center; margin-bottom: 60px; }

/* ============================================
   GALLERY
============================================ */
.gallery-subhead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-subhead i { color: var(--ocean-cyan); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease-out);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(2,20,45,0.85), transparent);
}

.video-gallery-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
  background: var(--ocean-dark);
}
.video-gallery-wrap video {
  width: 100%;
  display: block;
  max-height: 460px;
}
.video-gallery-caption {
  padding: 16px 22px;
  background: var(--bg-card);
}
.video-gallery-caption h4 { font-size: 15px; color: var(--text-primary); margin-bottom: 4px; }
.video-gallery-caption p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

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

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}

.blog-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-img img { transform: scale(1.08); }

.blog-body { padding: 26px 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta .dot { opacity: 0.5; }
.blog-meta i { color: var(--ocean-cyan); font-size: 11px; }

.blog-body h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.blog-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean-blue);
  transition: gap 0.2s;
}
.blog-readmore:hover { gap: 14px; color: var(--ocean-cyan); }

/* ──────────────────────────────────────
   NEWS & EVENTS
──────────────────────────────────────── */
#news-events {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.news-header { text-align: center; margin-bottom: 60px; }

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}

.news-card.featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all var(--duration) var(--ease-out);
}
.news-card.featured:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}

.news-img { height: 260px; overflow: hidden; }
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.6s var(--ease-out);
}
.news-card.featured:hover .news-img img { transform: scale(1.06); }

.news-date-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,119,182,0.35);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.news-date-badge .day { font-size: 20px; font-weight: 800; font-family: var(--font-head); }
.news-date-badge .mon { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.news-date-badge.sm { position: static; flex-direction: row; align-items: baseline; gap: 6px; padding: 8px 12px; border-radius: 10px; width: fit-content; margin-bottom: 14px; }
.news-date-badge.sm .day { font-size: 16px; }

.news-body { padding: 28px 26px 30px; }
.news-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocean-cyan);
  margin-bottom: 10px;
}
.news-body h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.news-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card-sm {
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease-out);
  flex: 1;
}
.news-card-sm:hover {
  transform: translateX(6px);
  border-color: var(--ocean-cyan);
  box-shadow: var(--shadow);
}
.news-sm-body h4 {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.news-sm-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ──────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────── */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3);
  width: calc((100% - 56px) / 3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocean-cyan);
}

.t-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}
.t-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ocean-cyan);
}
.t-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--ocean-cyan);
}
.t-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ocean-blue);
  background: transparent;
  color: var(--ocean-blue);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover {
  background: var(--ocean-blue);
  color: #fff;
  transform: scale(1.1);
}

/* ──────────────────────────────────────
   QUICK CONTACT
──────────────────────────────────────── */
#quick-contact {
  padding: var(--section-py) 0;
  background: var(--ocean-dark);
  position: relative;
  overflow: hidden;
}

#quick-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,180,216,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,119,182,0.08) 0%, transparent 60%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-title { color: #fff; }
.contact-info .section-label { color: var(--ocean-accent); }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.contact-item i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--ocean-cyan);
  flex-shrink: 0;
}

.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(20px);
}

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

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean-cyan);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
}
.form-group select option { background: var(--ocean-dark); color: #fff; }

/* ──────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
#footer {
  background: var(--ocean-darker);
  border-top: 1px solid rgba(0,180,216,0.15);
  position: relative;
}

.footer-main {
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand .footer-logo {
  height: 58px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { color: #fff; background: var(--ocean-blue); border-color: var(--ocean-blue); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--ocean-cyan);
  padding-left: 6px;
}
.footer-col ul li a::before {
  content: '›';
  font-size: 16px;
  color: var(--ocean-cyan);
  opacity: 0.7;
}

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--ocean-cyan); }
.footer-newsletter .btn { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 24px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--ocean-cyan); }

/* ──────────────────────────────────────
   WHATSAPP FLOAT BAR
──────────────────────────────────────── */
#wa-float {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 1000;
}

.wa-main-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: all 0.3s var(--ease-out);
  border: none;
  position: relative;
  z-index: 2;
}
.wa-main-btn:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.55); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.wa-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 310px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}
#wa-float.open .wa-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#wa-float.open .wa-main-btn { transform: rotate(0deg) scale(1.05); }

.wa-panel-header {
  background: #128C7E;
  padding: 18px 20px;
  color: #fff;
}
.wa-panel-header h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.wa-panel-header p  { font-size: 12px; opacity: 0.8; margin: 0; }
.wa-online-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.wa-contacts { padding: 14px 16px; }
.wa-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 0.2s;
  margin-bottom: 6px;
}
.wa-contact-item:hover { background: #F0FDF4; }
.wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.wa-contact-info .wa-name { font-size: 14px; font-weight: 700; }
.wa-contact-info .wa-dept { font-size: 11.5px; color: #666; }
.wa-contact-info .wa-num  { font-size: 12px; color: #25D366; font-weight: 600; margin-top: 1px; }

.wa-panel-footer {
  background: #F0FDF4;
  padding: 12px 16px;
  text-align: center;
  font-size: 11.5px;
  color: #666;
  border-top: 1px solid #E5E7EB;
}

/* ──────────────────────────────────────
   SCROLL TO TOP
──────────────────────────────────────── */
#scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scroll-top:hover { transform: translateY(-4px); }

/* ──────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.revealed,
.reveal-right.revealed { transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ──────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1200px) {
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :nth-child(5) { grid-column: span 2; }
}

@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
  .message-grid { grid-template-columns: 1fr; gap: 50px; }
  #chairman-message .message-grid { grid-template-columns: 1fr; }
  .message-image-wrap { order: -1; }
  .img-placeholder { height: 360px; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  #top-bar { display: none; }

  #main-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  [data-theme="dark"] #main-nav { background: #0a1628; }
  [data-theme="light"] #main-nav, #main-nav { background: var(--bg-card); }

  .nav-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(0,0,0,0.5);
    z-index: 299;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
  }
  .nav-menu-backdrop.active { display: block; opacity: 1; }

  .nav-menu {
    display: flex;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 82vw);
    min-width: 0;
    background: var(--bg-card);
    padding: 22px 18px;
    gap: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 300;
    isolation: isolate;
    box-shadow: -12px 0 40px rgba(0,0,0,0.35);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out), visibility 0.35s;
  }
  .nav-item { min-width: 0; }
  .nav-menu.mobile-open {
    visibility: visible;
    pointer-events: all;
    transform: translateX(0);
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    width: 100%;
    left: auto;
    top: auto;
    padding: 4px 0 4px 14px;
    pointer-events: all;
    display: none;
  }
  .nav-dropdown::before { display: none; content: none; }
  .nav-item:hover .nav-dropdown,
  .nav-item.dropdown-open .nav-dropdown {
    transform: none;
  }
  .nav-dropdown a {
    white-space: normal;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }
  .nav-dropdown a span,
  .nav-dropdown a i {
    min-width: 0;
  }
  .nav-item.dropdown-open .nav-dropdown { display: block; }
  .nav-hamburger { display: flex; }

  .nav-link {
    white-space: normal;
    min-width: 0;
    width: 100%;
  }

  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-extra a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
  }
  .nav-mobile-extra a:hover { background: var(--bg-secondary); color: var(--ocean-cyan); }
  .nav-mobile-extra a i { width: 16px; color: var(--ocean-cyan); }

  #hero-slider { height: clamp(160px, 41.67vw, 340px); }
  .slider-arrow { display: none; }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    width: 100%;
  }
  .concerns-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 50px 0 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { gap: 10px; }
  .nav-logo { height: 50px; }
  .nav-inner { height: 64px; }
  .top-right { gap: 12px; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .top-contact { gap: 8px; }
  .top-contact-item { font-size: 11.5px; }
  .top-social { display: none; }
  .top-divider { display: none; }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   LIGHTBOX (image popup)
============================================ */
.gallery-item { cursor: pointer; }

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,13,26,0.94);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.lightbox-overlay.active { display: flex; opacity: 1; }

.lightbox-content {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform 0.25s var(--ease-out);
}
.lightbox-overlay.active .lightbox-content { transform: scale(1); }

.lightbox-content img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.5);
  background: #0a1628;
}
.lightbox-caption {
  margin-top: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  max-width: 90%;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.08);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 640px) {
  .lightbox-close, .lightbox-nav { width: 40px; height: 40px; font-size: 15px; }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-content img { max-height: 68vh; }
}

/* ============================================
   CONTACT US PAGE
============================================ */
.contact-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 70px;
}

.map-embed-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 420px;
  position: relative;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.directions-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.directions-panel h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.directions-panel .directions-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.route-anim-wrap { width: 100%; margin-bottom: 20px; }
.route-anim-wrap svg { width: 100%; height: auto; display: block; }
.route-path {
  fill: none;
  stroke: var(--ocean-cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
  animation: route-flow 1.4s linear infinite;
  opacity: 0.85;
}
@keyframes route-flow {
  to { stroke-dashoffset: -40; }
}
.route-pin-pulse {
  animation: route-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes route-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.directions-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.directions-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.directions-steps .step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.contact-address-card {
  background: var(--grad-dark);
  border-radius: 20px;
  padding: 40px 34px;
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-address-card .section-label { color: var(--ocean-accent); }
.contact-address-card h2 { color: #fff; }
.contact-address-card .contact-items { margin-top: 26px; }
.contact-address-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.6;
}
.contact-address-card .contact-item i {
  color: var(--ocean-accent);
  margin-top: 3px;
  width: 18px;
}

@media (max-width: 1024px) {
  .contact-top-grid { grid-template-columns: 1fr; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .map-embed-wrap, .map-embed-wrap iframe { min-height: 320px; }
}

/* ============================================
   SINGLE BLOG POST
============================================ */
.post-hero-img {
  border-radius: 20px;
  overflow: hidden;
  max-height: 420px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.post-hero-img img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; display: block; }

.post-body {
  max-width: 780px;
  margin: 0 auto;
}
.post-body p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.post-body h2 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 36px 0 16px;
}
.post-body ul {
  margin: 0 0 22px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ocean-cyan);
  margin-top: 20px;
}

/* ============================================
   ICON-AVATAR PLACEHOLDER (for dummy profiles)
============================================ */
.icon-avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  flex-shrink: 0;
}
.icon-avatar i { opacity: 0.95; }

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease-out);
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.profile-card .icon-avatar { width: 90px; height: 90px; font-size: 32px; margin: 0 auto 18px; }
.profile-card h3 { font-size: 1.05rem; color: var(--text-primary); margin-bottom: 4px; }
.profile-card .profile-role { font-size: 12.5px; font-weight: 700; color: var(--ocean-cyan); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.profile-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.shareholder-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shareholder-table { width: 100%; border-collapse: collapse; }
.shareholder-table th, .shareholder-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 13.5px;
}
.shareholder-table th {
  background: var(--grad-dark);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.5px;
}
.shareholder-table td { color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.shareholder-table tr:last-child td { border-bottom: none; }
.shareholder-table .sh-name { font-weight: 700; color: var(--text-primary); }
.shareholder-table .sh-pct { font-weight: 700; color: var(--ocean-cyan); }

@media (max-width: 640px) {
  .shareholder-table th, .shareholder-table td { padding: 12px 12px; font-size: 12px; }
}

/* ============================================
   COMPLIANCE DETAIL PAGES
============================================ */
.compliance-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 20px;
}
.compliance-req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.compliance-req-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.compliance-req-card h3 i { color: var(--ocean-cyan); }
.compliance-req-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compliance-req-card ul li {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.compliance-req-card ul li i {
  color: var(--ocean-cyan);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 12px;
}
.compliance-note {
  font-size: 12.5px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .compliance-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ACHIEVEMENT PAGE
============================================ */
.achievement-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 34px;
}
.achievement-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--ocean-cyan);
}
.timeline-year {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ocean-cyan);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease-out);
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.award-card .award-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.award-card h3 { font-size: 1rem; color: var(--text-primary); margin-bottom: 6px; }
.award-card .award-org { font-size: 12px; color: var(--ocean-cyan); font-weight: 700; margin-bottom: 10px; }
.award-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .award-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESOURCE PAGES (Company Documents / Business Policy)
============================================ */
.doc-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.doc-table-wrap h3 {
  padding: 20px 26px;
  font-size: 1.05rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-table-wrap h3 i { color: var(--ocean-cyan); }
.doc-table { width: 100%; border-collapse: collapse; }
.doc-table th, .doc-table td {
  padding: 14px 26px;
  text-align: left;
  font-size: 13.5px;
}
.doc-table th {
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.doc-table td { color: var(--text-secondary); border-top: 1px solid var(--border); }
.doc-table .doc-name { font-weight: 700; color: var(--text-primary); }
.doc-table .doc-ref { font-family: monospace; font-size: 12.5px; color: var(--ocean-cyan); }
.doc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}
.doc-status i { font-size: 9px; }

@media (max-width: 700px) {
  .doc-table th, .doc-table td { padding: 12px 14px; font-size: 12px; }
  .doc-table th:nth-child(3), .doc-table td:nth-child(3) { display: none; }
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.policy-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.policy-card h3 .policy-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.policy-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 900px) {
  .policy-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY PAGE — FILTERABLE PORTFOLIO
============================================ */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}
.gallery-filter-btn:hover {
  border-color: var(--ocean-cyan);
  color: var(--ocean-cyan);
}
.gallery-filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
}

.gallery-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.gallery-portfolio-grid .gallery-item.gallery-hidden {
  display: none;
}
.gallery-portfolio-grid .gallery-item {
  height: 240px;
  animation: gallery-fade-in 0.35s var(--ease-out);
}
@keyframes gallery-fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.gallery-item .gallery-zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}
.gallery-item:hover .gallery-zoom-hint { opacity: 1; }

@media (max-width: 900px) {
  .gallery-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-portfolio-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONCERN DETAIL PAGES
============================================ */
.concern-hero-banner {
  border-radius: 22px;
  overflow: hidden;
  max-height: 380px;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
}
.concern-hero-banner img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; display: block; }

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.quick-fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.quick-fact-card i {
  font-size: 22px;
  color: var(--ocean-cyan);
  margin-bottom: 10px;
  display: block;
}
.quick-fact-card .qf-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.quick-fact-card .qf-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.4;
}

.concern-section-block { margin-bottom: 60px; }
.concern-section-block .section-label { margin-bottom: 10px; }
.concern-section-block .section-title { margin-bottom: 18px; }
.concern-body-text { max-width: 820px; }
.concern-body-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.concern-body-text ul {
  margin: 0 0 18px 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .quick-facts-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AUTH PAGES (Login / Registration / Forgot Password)
============================================ */
.auth-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 80px;
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 38px;
  box-shadow: var(--shadow-hover);
}
.auth-card.wide { max-width: 620px; }
.auth-card-header { text-align: center; margin-bottom: 30px; }
.auth-card-header .section-label { justify-content: center; }
.auth-card-header h1 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 6px 0 8px;
}
.auth-card-header p { font-size: 13.5px; color: var(--text-muted); }

.auth-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form .form-group:last-of-type { margin-bottom: 0; }
.auth-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.auth-form .input-icon-wrap { position: relative; }
.auth-form .input-icon-wrap i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}
.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"],
.auth-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--duration) var(--ease-out);
}
.auth-form input:focus {
  outline: none;
  border-color: var(--ocean-cyan);
}
.auth-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.auth-checkbox-row input { margin-top: 3px; accent-color: var(--ocean-cyan); }
.auth-checkbox-row a { color: var(--ocean-cyan); font-weight: 600; }

.auth-forgot-link {
  display: block;
  text-align: right;
  font-size: 12.5px;
  color: var(--ocean-cyan);
  font-weight: 600;
  margin: 10px 0 24px;
}

.auth-switch {
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-switch a { color: var(--ocean-cyan); font-weight: 700; }

@media (max-width: 560px) {
  .auth-card { padding: 32px 22px; }
  .auth-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
