/* ============================================
   CAPITAL FACILITY MANAGEMENT SERVICES (CFMS)
   Premium Corporate & Defense Security Redesign
   Palette: Executive Midnight Navy / 24K Rich Gold / Glass Frost
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0A1730;
  --primary-light: #16294E;
  --primary-dark: #050B17;
  
  --navy-950: #040813;
  --navy-900: #081124;
  --navy-850: #0C1935;
  --navy-800: #102144;
  --navy-750: #152B56;
  --navy-700: #1B3568;
  --navy-600: #234380;

  --gold-50:  #FCF9EE;
  --gold-100: #F8F1D4;
  --gold-200: #EEDFA3;
  --gold-300: #E2C968;
  --gold-400: #D8B73E;
  --gold:     #C9A227;
  --gold-600: #B28B1B;
  --gold-700: #936F13;
  --gold-800: #755510;
  --gold-glow: rgba(201, 162, 39, 0.28);
  --gold-glow-strong: rgba(216, 183, 62, 0.45);
  --gold-gradient: linear-gradient(135deg, #F8E287 0%, #D8B73E 35%, #B28B1B 75%, #8A6710 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF0A8 0%, #E5C554 40%, #C9A227 80%, #9E7915 100%);

  --text-main: #0B1629;
  --text-muted: #52637D;
  --text-light: #8496B0;
  --text-inv: #FFFFFF;
  --text-inv-muted: rgba(255, 255, 255, 0.75);

  --white: #FFFFFF;
  --success: #10B981;
  --success-glow: rgba(16, 185, 129, 0.25);

  --bg-main: #FFFFFF;
  --bg-subtle: #F6F8FC;
  --bg-alt: #EDF2F9;
  --bg-card: #FFFFFF;
  --bg-dark-card: rgba(12, 25, 53, 0.75);

  --border-light: #E2E8F3;
  --border-subtle: #EDF2F9;
  --border-strong: #CDD8E8;
  --border-gold: rgba(201, 162, 39, 0.35);
  --border-gold-glow: rgba(216, 183, 62, 0.55);
  --border-dark: rgba(255, 255, 255, 0.08);

  --shadow-xs: 0 1px 3px rgba(10, 23, 48, 0.04);
  --shadow-sm: 0 4px 12px rgba(10, 23, 48, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 23, 48, 0.09);
  --shadow-lg: 0 24px 54px rgba(10, 23, 48, 0.13);
  --shadow-gold: 0 10px 28px rgba(201, 162, 39, 0.28);
  --shadow-dark: 0 20px 48px rgba(0, 0, 0, 0.45);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s ease;
  --transition-slow: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  --container-width: 1240px;
  --topbar-height: 40px;
  --header-height: 80px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-950);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--navy-950);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 5px;
  border: 2px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-600);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: var(--gold-gradient);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 1.9vw, 1.35rem); font-weight: 600; }

p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-dark {
  background-color: var(--navy-900);
  color: var(--white);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.7;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-dark .section-label {
  color: var(--gold-300);
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.28);
}

.section-header h2 {
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary,
.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201, 162, 39, 0.4);
  color: var(--navy-950);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-950);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border-strong);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 0.96rem;
}

.top-bar {
  background-color: var(--navy-950);
  color: var(--text-light);
  font-size: 0.83rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-item strong {
  color: var(--gold-300);
  font-weight: 700;
}

.top-bar-item svg {
  color: var(--gold-400);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.top-bar-badge svg {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 17, 36, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(4, 8, 19, 0.97);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  padding: 4px 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.site-logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.36em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 10px 0;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-call-link {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-300);
  transition: var(--transition);
}

.header-call-link:hover {
  background: var(--gold);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger:hover {
  border-color: var(--gold-400);
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background:
    radial-gradient(700px 500px at 100% 0%, rgba(35, 67, 128, 0.6), transparent 70%),
    linear-gradient(170deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 24px 28px calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.42s;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-close:hover {
  background: var(--gold);
  color: var(--navy-950);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.mobile-nav-links .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.mobile-menu-contact a {
  color: var(--gold-300);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--navy-950);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.15);
  transform: scale(1.03);
  animation: hero-zoom 20s alternate infinite ease-in-out;
}

@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(10, 23, 48, 0.85) 0%, rgba(4, 8, 19, 0.95) 75%),
    linear-gradient(180deg, rgba(8, 17, 36, 0.7) 0%, rgba(4, 8, 19, 0.98) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 840px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-ribbon {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.trust-pill svg {
  color: var(--gold-400);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-stat-card {
  background: rgba(12, 25, 53, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.hero-stat-card h3 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
}

.compliance-ribbon {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: center;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.compliance-item:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

.compliance-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.compliance-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.compliance-text span {
  font-size: 0.72rem;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  margin-bottom: 22px;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background: var(--gold-gradient);
  color: var(--navy-950);
  border-color: transparent;
  transform: scale(1.08) rotate(3deg);
}

.trust-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.trust-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy-900);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.experience-badge h3 {
  color: var(--gold-300);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.experience-badge p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--primary);
}

.about-feature-item svg {
  color: var(--gold-600);
  flex-shrink: 0;
}

.finance-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
}

.finance-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.finance-table th {
  background: var(--navy-900);
  color: var(--gold-300);
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.finance-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 600;
}

.finance-table tr:last-child td {
  border-bottom: none;
}

.finance-table tr:hover td {
  background-color: var(--gold-50);
}

.finance-table td.highlight {
  color: var(--gold-700);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold-gradient);
  color: var(--navy-950);
  transform: scale(1.08);
}

.service-card h4 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-700);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.service-card-link:hover {
  color: var(--primary);
  gap: 12px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.workflow-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.workflow-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.workflow-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.7;
}

.workflow-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.workflow-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.client-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  flex-shrink: 0;
}

.client-card:hover .client-icon {
  background: var(--gold-gradient);
  color: var(--navy-950);
}

.client-card h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.client-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 26px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-700);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: var(--navy-950);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  flex-shrink: 0;
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gold-gradient);
  color: var(--navy-950);
}

.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.form-toast {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--success);
  color: #065F46;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-toast.active {
  display: block;
  animation: slide-up 0.4s ease;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-banner {
  background:
    radial-gradient(circle at 10% 50%, rgba(35, 67, 128, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-850) 100%);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(35, 67, 128, 0.4) 0%, transparent 50%),
    linear-gradient(170deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
  color: var(--gold-300);
}

.breadcrumb a:hover {
  color: var(--white);
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy-700) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 44px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--navy-900);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid var(--gold-200);
}

.timeline-content h4 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.equipment-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.equipment-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  margin-bottom: 20px;
  transition: var(--transition);
}

.equipment-card:hover .equipment-icon {
  background: var(--gold-gradient);
  color: var(--navy-950);
}

.equipment-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-strong);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy-900);
  color: var(--gold-300);
  border-color: var(--navy-900);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 8, 19, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--gold-300);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 19, 0.94);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold);
}

.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  color: var(--white);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.floating-btn-phone {
  background: var(--gold-gradient);
  color: var(--navy-950);
}

.floating-btn-mail {
  background: var(--navy-800);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.footer {
  background-color: var(--navy-950);
  color: var(--text-light);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-top: 18px;
  line-height: 1.65;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.footer-visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--gold-300);
}

.footer-visitor-counter strong {
  color: var(--white);
}

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 8, 19, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-action-call {
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-action-quote {
  background: var(--gold-gradient);
  color: var(--navy-950);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper img {
    height: 400px;
  }
}

@media (max-width: 860px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .header-cta .btn {
    display: none;
  }
  .header-call-link {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mobile-action-bar {
    display: flex;
  }
  .floating-actions {
    bottom: 80px;
    right: 18px;
  }
  .footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 50px;
    min-height: auto;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .experience-badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
}
