/* ==========================================================================
   KONSULIN GROUP HOLDING - LUXURY CORPORATE STYLESHEET
   Dominant Palette: Midnight Navy (#060d19, #0a172a, #0f223f) & Imperial Gold (#c5a059, #dfb76c, #f4e4ba)
   Typography: Gilroy (Gilroy-Bold, Gilroy-SemiBold, Gilroy-Medium, Gilroy-Regular)
   ========================================================================== */

/* --- Font Declarations (Gilroy with Fallbacks) --- */
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-Light.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-Regular.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-Medium.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-SemiBold.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-Bold.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/gh/micheal-danil/gilroy-free-webfont@master/Gilroy-ExtraBold.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/16219/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Also import high-quality geometric sans fallback in case CDN blocks */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:wght@600;700;800&display=swap');

/* --- CSS Variables & Root --- */
:root {
  /* Navy Tones */
  --bg-darkest: #050a14;
  --bg-navy-950: #08101e;
  --bg-navy-900: #0d192e;
  --bg-navy-850: #11203b;
  --bg-navy-800: #162a4d;
  --bg-navy-700: #1e3864;
  --bg-surface: rgba(13, 25, 46, 0.7);
  --bg-surface-elevated: rgba(22, 42, 77, 0.85);

  /* Luxury Gold Tones */
  --gold-300: #f4e4ba;
  --gold-400: #e5cb87;
  --gold-500: #c5a059;
  --gold-600: #a9823b;
  --gold-700: #886526;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #f7e7c4 0%, #dfb76c 40%, #c5a059 70%, #9a7432 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(223, 183, 108, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
  --navy-gradient: linear-gradient(180deg, #08101e 0%, #0d192e 100%);
  --navy-radial-glow: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.08) 0%, rgba(8, 16, 30, 0) 70%);
  --card-gradient: linear-gradient(145deg, rgba(22, 42, 77, 0.6) 0%, rgba(13, 25, 46, 0.8) 100%);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-gold: #dfb76c;
  --text-gold-light: #f4e4ba;

  /* Borders & Shadows */
  --border-gold: rgba(197, 160, 89, 0.3);
  --border-gold-light: rgba(223, 183, 108, 0.5);
  --border-navy: rgba(255, 255, 255, 0.08);
  --shadow-luxury: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 160, 89, 0.08);
  --shadow-gold-glow: 0 0 30px rgba(223, 183, 108, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-main: 'Gilroy', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif-accent: 'Cinzel', serif;

  /* Layout */
  --container-width: 1240px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(197, 160, 89, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(19, 38, 68, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #1e3864;
  border-radius: 4px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-600);
}

/* Selection Color */
::selection {
  background: rgba(197, 160, 89, 0.3);
  color: #fff;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold {
  color: var(--text-gold);
}

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

.bg-navy-elevated {
  background-color: var(--bg-navy-900);
}

.section-py {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Divider Accent */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #060d19;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 183, 108, 0.45);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-300);
  border: 1px solid var(--gold-500);
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-navy {
  background: var(--bg-navy-800);
  color: #ffffff;
  border: 1px solid var(--border-navy);
}

.btn-navy:hover {
  background: var(--bg-navy-700);
  border-color: var(--border-gold);
  color: var(--gold-300);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* --- Top Bar & Announcement --- */
.top-bar {
  background: rgba(5, 10, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  color: var(--gold-400);
  width: 14px;
  height: 14px;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(197, 160, 89, 0.12);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--gold-300);
  font-weight: 600;
}

/* --- Main Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 16, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 13, 25, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(197, 160, 89, 0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #162a4d 0%, #0d192e 100%);
  border: 1.5px solid var(--gold-400);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
  position: relative;
}

.brand-emblem svg {
  width: 24px;
  height: 24px;
  color: var(--gold-400);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-name span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* --- Mobile Navigation Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #08101e;
  border-left: 1px solid var(--border-gold);
  z-index: 1001;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
}

.drawer-close:hover {
  color: var(--gold-400);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-link.active, .drawer-link:hover {
  color: var(--gold-400);
  padding-left: 0.5rem;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.92) 0%, rgba(5, 10, 20, 0.98) 100%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 75% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(30, 56, 100, 0.3) 0%, transparent 50%),
    linear-gradient(rgba(8, 16, 30, 0.85), rgba(5, 10, 20, 0.95)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-300);
}

.hero-trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual / Card Showcase */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--card-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hero-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-card-body h4 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.metric-box {
  background: rgba(8, 16, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.metric-box .metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-300);
}

.metric-box .metric-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0d192e;
  border: 1px solid var(--border-gold-light);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

/* --- Stats & Metrics Bar --- */
.stats-strip {
  background: #0a1324;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* --- Luxury Cards & Grid Layouts --- */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

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

/* Luxury Feature Card */
.luxury-card {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
}

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

.card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 1.6rem;
  transition: var(--transition-smooth);
}

.luxury-card:hover .card-icon-wrap {
  background: var(--gold-gradient);
  color: #060d19;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.card-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
  font-size: 0.9rem;
  font-weight: 600;
}

.card-link:hover {
  color: var(--gold-300);
  gap: 0.75rem;
}

/* --- Subsidiary Pillars / Portfolio Section --- */
.subsidiary-card {
  background: #0d192e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.subsidiary-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
  transform: translateY(-6px);
}

.subsidiary-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.subsidiary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.2) 0%, rgba(13, 25, 46, 0.95) 100%);
}

.subsidiary-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(8, 16, 30, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.85rem;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.subsidiary-content {
  padding: 1.8rem;
}

.subsidiary-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.subsidiary-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.subsidiary-tag {
  background: rgba(22, 42, 77, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Executive Leadership Section --- */
.leader-card {
  background: #0d192e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.leader-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.leader-photo {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #11203b;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.05);
}

.leader-info {
  padding: 1.5rem;
  text-align: center;
}

.leader-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.leader-title {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.leader-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* --- Timeline Component (For About Us) --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, rgba(197, 160, 89, 0.1) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #08101e;
  border: 3px solid var(--gold-400);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.6);
}

.timeline-box {
  background: var(--card-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  position: relative;
  width: 90%;
  box-shadow: var(--shadow-card);
}

.timeline-item:nth-child(odd) .timeline-box {
  margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-box {
  margin-left: 2rem;
}

.timeline-year {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}

/* --- Values & ESG Pillars --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: #0d192e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--border-gold);
  background: #11203b;
}

.value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(197, 160, 89, 0.2);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

/* --- Filter Tabs (Services Page) --- */
.filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: rgba(13, 25, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #060d19;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Service Detail Block */
.service-block {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.service-block:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
}

.service-block.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-block.reverse .service-block-media {
  order: -1;
}

.service-block-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-gold);
}

.service-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-feature-item svg {
  color: var(--gold-400);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* --- Contact Page Styles --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-luxury);
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-form-card {
  background: #0d192e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

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

.form-control {
  width: 100%;
  background: #08101e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.25);
  background: #0b1527;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dfb76c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Interactive Map Container */
.map-container {
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-top: 2rem;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #10213d 0%, #091322 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.cta-subtitle {
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
}

/* --- Footer --- */
.site-footer {
  background: #040811;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 5rem 0 2rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #060d19;
  border-color: transparent;
  transform: translateY(-2px);
}

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

/* --- Page Hero Header (About, Services, Contact) --- */
.page-hero {
  padding: 5.5rem 0 4.5rem 0;
  background: linear-gradient(180deg, #0d192e 0%, #060d19 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--gold-400);
}

.breadcrumbs span {
  color: var(--gold-400);
}

/* --- Notification Toast --- */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0d192e;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
}

.toast-notification.show {
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .service-block, .service-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-block.reverse .service-block-media {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .card-grid-3, .card-grid-4, .card-grid-2, .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-dot {
    left: 20px;
  }
  .timeline-item:nth-child(odd) .timeline-box, .timeline-item:nth-child(even) .timeline-box {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero-floating-badge {
    position: static;
    margin-top: 1rem;
  }
}
