/* ===== CSS VARIABLES ===== */
:root {
  --cream: #F5F0E8;
  --off-white: #FAF8F5;
  --warm-white: #FFFFFF;
  --gray-light: #E8E4DC;
  --gray-mid: #B8B0A0;
  --gray-dark: #4A4540;
  --gray-deep: #2C2825;
  --accent-gold: #C8A96E;
  --accent-gold-light: #E8C98E;
  --accent-rust: #8B5A2B;
  --text-dark: #1E1B18;
  --text-mid: #5C5650;
  --text-light: #9A948C;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-mono: 'Courier Prime', monospace;
}
.breadcrumb-item.active
 {
    color: white;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: #1a142b; border-radius: 3px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: white;
  /*background: var(--gray-deep);*/
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #1a142b;
  /*color: #1a142b;*/
  letter-spacing: 0.1em;
  animation: pulseGlow 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 1rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: #1a142b;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(200,169,110,0.5); }
  50% { text-shadow: 0 0 30px rgba(200,169,110,0.9); }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: white;
  /*background: rgba(250, 248, 245, 0.97);*/
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}
.navbar-brand .logo-img {
  height: 52px;
  width: auto;
  transition: var(--transition);
  object-fit: contain;
}
#navbar.scrolled .navbar-brand .logo-img { height: 44px; }
.logo-placeholder {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
  transition: var(--transition);
}
#navbar.scrolled .logo-placeholder { color: var(--gray-deep); }
.logo-placeholder .logo-icon {
  width: 42px; height: 42px;
  background: #1a142b;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
#navbar.scrolled .nav-link-custom { color: var(--text-mid) !important; }
.nav-link-custom::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: #1a142b;
  transition: var(--transition);
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after { left: 1rem; right: 1rem; }
.nav-link-custom:hover,
.nav-link-custom.active { color: #1a142b !important; }
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: flex; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
}
.toggler-icon span {
  display: block; height: 2px; width: 100%;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}
#navbar.scrolled .toggler-icon span { background: var(--gray-deep); }

/* ===== SECTION COMMON ===== */
section { padding: 6rem 0; }
.section-tag {
  display: inline-block;
  /*font-family: var(--font-mono);*/
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  /*color: #1a142b;*/
  background: #1a142b;
  /*background: rgba(200,169,110,0.1);*/
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .highlight {
  color: #1a142b;
  font-style: italic;
}
.section-divider {
  width: 60px; height: 3px;
  background: #1a142b;
  margin: 1.5rem 0;
  border-radius: 2px;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #1a142b;
  /*background: #1a142b;*/
  border-radius: 50%;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,25,22,0.75) 0%,
    rgba(44,40,37,0.55) 50%,
    rgba(28,25,22,0.70) 100%
  );
  z-index: 1;
}
.hero-overlay::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='%23C8A96E' fill-opacity='0.03'%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");
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #1a142b;
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  background: rgba(200,169,110,0.08);
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  min-height: 2.5em;
}
.hero-title .typed-text { color: var(--accent-gold-light); }
.typed-cursor {
  display: inline-block;
  width: 3px; height: 1em;
  background: #1a142b;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 2s both;
}
.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 2.3s both;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: #1a142b;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid #1a142b;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { background: var(--accent-rust); border-color: var(--accent-rust); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(200,169,110,0.3); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeInUp 0.8s ease 3s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{transform:scaleY(1);opacity:1}
  50%{transform:scaleY(0.5);opacity:0.5}
}
.scroll-text {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== WHO WE ARE SECTION ===== */
#who-we-are {
  background: #fff;
  position: relative;
  overflow: hidden;
}
#who-we-are::before {
  content: 'JLE';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(200,169,110,0.04);
  pointer-events: none;
  line-height: 1;
}
.who-we-are-image-wrap {
  position: relative;
  padding: 1.5rem;
}
.who-we-are-image-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 75%; height: 75%;
  border: 2px solid #1a142b;
  /*border: 2px solid #1a142b;*/
  border-radius: 4px;
  opacity: 0.4;
}
.who-we-are-image-wrap::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 75%; height: 75%;
  /*background: var(--cream);*/
  border-radius: 4px;
  z-index: -1;
}
.who-we-are-img {
  width: 100%; border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
  object-fit: cover; height: 400px;
}
.experience-badge {
  position: absolute; bottom: 1.5rem; right: 0;
  background: #1a142b;
  /*background: #1a142b;*/
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.experience-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  display: block;
}
.experience-badge .lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.who-content { padding: 1rem 0; }
.who-content p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.stats-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: #1a142b;
  display: block; line-height: 1;
}
.stat-item .stat-lbl {
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); margin-top: 0.3rem;
}

/* ===== OUR WORKS SECTION ===== */
#our-works {
  background: #1a142b;
  /*background: linear-gradient(135deg, var(--gray-deep) 0%, #1a1714 100%);*/
  position: relative;
  overflow: hidden;
}
#our-works .section-title { color: var(--warm-white); }
#our-works .section-divider { margin: 1.5rem auto; }
#our-works .section-subtitle { color: white; text-align: center; max-width: 550px; margin: 0 auto 3rem; }
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.work-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a142b, var(--accent-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.work-card:hover::before { transform: scaleX(1); }
.work-card:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.work-icon {
  width: 56px; height: 56px;
  background: #fff;
  /*background: rgba(200,169,110,0.1);*/
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #1a142b;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.work-card:hover .work-icon {
  background: #1a142b;
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.work-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}
.work-card:hover h4 { color: var(--accent-gold-light); }
.work-card p {
  font-size: 0.88rem;
  color: #fff;
  /*color: rgba(255,255,255,0.5);*/
  line-height: 1.7;
}
.work-card .card-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 0.8rem;
  transition: var(--transition);
}
.work-card:hover .card-arrow {
  background: #1a142b;
  border-color: #1a142b;
  color: white; transform: translate(2px, -2px);
}

/* ===== MANPOWER SECTION ===== */
#manpower {
  background: #fff;
  position: relative;
  overflow: hidden;
}
#manpower::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A96E' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.manpower-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; position: relative; z-index: 1; }
.manpower-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.manpower-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a142b, var(--accent-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.manpower-card:hover::before { transform: scaleX(1); }
.manpower-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.manpower-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: #1a142b;
  transition: var(--transition);
}
.manpower-card:hover .manpower-icon-wrap { background: #1a142b; color: white; }
.manpower-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gray-deep);
  line-height: 1;
  display: block;
}
.manpower-label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.4rem; display: block;
}
.manpower-extra {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative; z-index: 1;
}
.manpower-extra-grid { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; }
.manpower-extra-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-mid);
}
.manpower-extra-item i { color: #1a142b; font-size: 1rem; }
.manpower-extra-item strong { color: var(--gray-deep); }

/* ===== FOOTER ===== */
footer {
  background: #fff;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-top { padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { margin-bottom: 1.5rem; }
.footer-logo-img { height: 50px; width: auto; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--warm-white);
}
.footer-tagline { font-size: 0.85rem; color: #1a142b; margin-top: 0.3rem; }
.footer-desc {
  font-size: 0.88rem;
  color: #1a142b;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a142b;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: #1a142b;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: #1a142b;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 6px; height: 1px;
  background: #1a142b;
  transition: width 0.3s ease;
}
.footer-links a:hover { color: #1a142b; padding-left: 4px; }
.footer-links a:hover::before { width: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-contact-item .icon-wrap {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(200,169,110,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #1a142b; font-size: 0.9rem;
  margin-top: 2px;
}
.footer-contact-item .contact-info a,
.footer-contact-item .contact-info span {
  font-size: 0.85rem;
  color: #1a142b;
  display: block; line-height: 1.5;
  transition: var(--transition);
}
.footer-contact-item .contact-info a:hover { color: #1a142b; }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.8rem; color: #1a142b; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: #1a142b !important;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff !important; font-size: 0.85rem;
  transition: var(--transition);
}

.section-title .highlight-11 {
    color: #fff;
    font-style: italic;
}

.social-btn:hover { background: #1a142b; border-color: #1a142b; color: white; transform: translateY(-2px); }

/* ===== JOURNEY PAGE ===== */
#journey-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--gray-deep) 0%, #1a1714 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#journey-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C8A96E' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v0L80 40h0z'/%3E%3C/g%3E%3C/svg%3E");
}
#journey-hero .section-title { color: var(--warm-white); }
#journey-hero p { color: var(--gray-mid); font-size: 1.1rem; }
.timeline-section {
  background: var(--off-white);
  padding: 6rem 0;
  position: relative;
}
.timeline-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1a142b, rgba(200,169,110,0.2));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: calc(50% - 2.5rem);
  background: var(--warm-white);
  border-radius: 8px;
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-dot {
  position: absolute; left: 50%; top: 1.8rem;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: #1a142b;
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
  z-index: 1;
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #1a142b;
  border: 1px solid rgba(200,169,110,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--gray-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 0.85rem;
  color: #1a142b;
  line-height: 1.7;
}
.timeline-content .tl-icon {
  position: absolute; top: 1.8rem;
  width: 36px; height: 36px;
  background: rgba(200,169,110,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #1a142b; font-size: 1rem;
}
.timeline-item:nth-child(odd) .tl-icon { right: 1.5rem; }
.timeline-item:nth-child(even) .tl-icon { left: 1.5rem; }

/* ===== WORKS PAGE ===== */
#works-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  text-align: center;
  position: relative;
}
#services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.8rem; }
.service-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(200,169,110,0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,169,110,0.12), rgba(200,169,110,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: var(--transition);
}
.service-icon-wrap::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 18px;
  border: 1px solid rgba(200,169,110,0.15);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, #1a142b, var(--accent-gold-light));
}
.service-card:hover .service-icon-wrap::after { border-color: rgba(200,169,110,0.4); transform: scale(1.05); }
.service-icon-wrap i {
  font-size: 1.7rem;
  color: #1a142b;
  transition: var(--transition);
  animation: none;
}
.service-card:hover .service-icon-wrap i {
  color: white;
  animation: iconBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes iconBounce {
  0%,100%{transform:scale(1) rotate(0)}
  30%{transform:scale(1.2) rotate(-8deg)}
  60%{transform:scale(0.9) rotate(4deg)}
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--gray-deep);
  margin-bottom: 0.8rem;
  transition: var(--transition);
}
.service-card:hover h4 { color: var(--accent-rust); }
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}
.service-card .service-num {
  position: absolute; top: 1.5rem; right: 1.8rem;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 900;
  color: rgba(200,169,110,0.07);
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(200,169,110,0.14); }
.service-card .service-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a142b;
  background: rgba(200,169,110,0.08);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-top: 1rem;
  border: 1px solid rgba(200,169,110,0.2);
  transition: var(--transition);
}
.service-card:hover .service-tag { background: #1a142b; color: white; border-color: #1a142b; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; 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; }

/* ===== INNER PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--gray-deep) 0%, #221f1b 100%);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: white;
  margin-bottom: 0.5rem;
}
.page-header .breadcrumb {
  justify-content: center;
  background: transparent; padding: 0;
  font-size: 0.85rem;
}
.breadcrumb-item { color: #fff; }
.breadcrumb-item a { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .timeline-line { left: 24px; }
  .timeline-item { flex-direction: row !important; }
  .timeline-dot { left: 24px; top: 2rem; }
  .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; margin-right: 0 !important; }
  .timeline-item:nth-child(even) .tl-icon,
  .timeline-item:nth-child(odd) .tl-icon { right: 1.5rem; left: auto; }
}
@media (max-width: 767px) {
  section { padding: 4rem 0; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .manpower-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .stats-row { justify-content: center; }
  #who-we-are::before { font-size: 10rem; right: -1rem; }
}
@media (max-width: 480px) {
  .works-grid { grid-template-columns: 1fr; }
  .manpower-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px;
  background: #1a142b;
  color: white; border: none;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--accent-rust); transform: translateY(-3px); }

/* ===== SECTION BG ALTERNATING ===== */
.bg-cream { background: var(--cream); }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--gray-deep); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: #1a142b;
  /*background: linear-gradient(135deg, #1a142b 0%, var(--accent-rust) 100%);*/
  padding: 5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white; font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--accent-rust);
  padding: 0.9rem 2.5rem;
  border-radius: 4px; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid white; transition: var(--transition);
}
.btn-white:hover { background: transparent; color: white; transform: translateY(-2px); }
