/* =============================================================
   SCEPTER — Complete Design System
   Premium Energy Industry | Dark Navy + Amber Gold
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
  --navy:        #0A0E1A;
  --navy-card:   #111827;
  --navy-border: #1E2935;
  --navy-mid:    #162030;
  --amber:       #F79F21;
  --amber-light: #FFC04D;
  --amber-dark:  #D4860D;
  --text-white:  #F1F5F9;
  --text-muted:  #8FA5BA;
  --text-dim:    #64748B;
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 8px 32px rgba(0,0,0,0.35);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base overrides ---- */
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-white);
  font-family: 'Inter', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}

p { color: var(--text-muted); line-height: 1.8; }

a { transition: var(--transition); }
a:hover { text-decoration: none; }
a:focus, a:active, button:focus, button:active { outline: none; text-decoration: none; }

/* Kill the amber top-bar line that style.css draws on nav hover/active */
.nav-menu ul li a:after,
.nav-menu ul li a:hover:after,
.nav-menu ul li.active > a:after { display: none !important; }

/* Kill lightgreen hover colour left in style.css */
.nav-menu ul li a:hover { color: var(--amber) !important; }

section { position: relative; }

/* ---- Preloader ---- */
#preloder {
  background: var(--navy);
  z-index: 999999;
}
.loader {
  border-color: var(--navy-border);
  border-left-color: var(--amber);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#header {
  height: auto;
  padding: 0;
  background: transparent;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 997;
  transition: var(--transition);
}
#header.header-scrolled {
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  height: auto;
}

.header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  width: 100%;
}

.logo-area { text-decoration: none !important; }
.logo-area h3 { margin: 0; }

.scepter-logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.scepter-logo-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}
.scepter-logo img { height: 70px; width: auto; object-fit: contain; }
.sc-footer-brand .scepter-logo img { height: 56px; }

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu ul li a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-menu ul li a:hover,
.nav-menu ul li.active a {
  color: var(--amber);
  background: rgba(247, 159, 33, 0.1);
}

/* Dropdown */
.nav-menu ul li.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  list-style: none;
}
.nav-menu ul li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 0;
  color: var(--text-muted) !important;
}
.nav-dropdown li a:hover {
  color: var(--amber) !important;
  background: rgba(247, 159, 33, 0.08) !important;
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  color: var(--navy) !important;
}

.nav-switch {
  display: none;
  cursor: pointer;
  color: var(--white);
  font-size: 22px;
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.sc-section {
  padding: 100px 0;
}
.sc-section-sm {
  padding: 60px 0;
}

.sc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.sc-heading {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.sc-heading span { color: var(--amber); }
.sc-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}

.sc-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 20px 0 32px;
}
.sc-divider-center { margin: 20px auto 32px; }

.sc-amber-text { color: var(--amber) !important; }
.sc-white-text { color: var(--text-white) !important; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.sc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sc-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sc-hero-slide.active { opacity: 1; }

.sc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.88) 0%,
    rgba(10, 14, 26, 0.65) 60%,
    rgba(10, 14, 26, 0.45) 100%
  );
  z-index: 1;
}
.sc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 60px;
}

.sc-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.sc-hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.sc-hero-title {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.sc-hero-title span {
  color: var(--amber);
  display: block;
  background: transparent !important;
}

/* style.css sets h1 span { background: #F79F21 } — kill it globally for our headings */
.sc-heading span,
h1 span, h2 span, h3 span { background: transparent !important; }

.sc-hero-desc {
  font-size: 17px;
  color: rgba(241,245,249,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.sc-btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.sc-btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,159,33,0.35);
}
.sc-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.sc-btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.sc-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.sc-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sc-hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(247,159,33,0.7), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.sc-stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 40px 0;
}
.sc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sc-stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid var(--navy-border);
}
.sc-stat-item:last-child { border-right: none; }
.sc-stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.sc-stat-num sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
}
.sc-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================================================================
   ABOUT INTRO
   ================================================================ */
.sc-about-intro {
  background: var(--navy);
}
.sc-about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sc-about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.sc-about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius);
  z-index: -1;
}
.sc-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}
.sc-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}
.sc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}
.sc-check-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ================================================================
   CORE VALUES
   ================================================================ */
.sc-core-section {
  background: var(--navy-mid);
  overflow: hidden;
}
.sc-core-top {
  text-align: center;
  margin-bottom: 64px;
}
.sc-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.sc-core-card {
  background: var(--navy-card);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--navy-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sc-core-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.sc-core-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sc-core-card:hover::before { transform: scaleX(1); }

.sc-core-letter {
  font-size: 72px;
  font-weight: 900;
  color: rgba(247,159,33,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  transition: var(--transition);
}
.sc-core-card:hover .sc-core-letter {
  color: rgba(247,159,33,0.25);
}
.sc-core-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.sc-core-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.sc-services-section {
  background: var(--navy);
}
.sc-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.sc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sc-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sc-service-card:hover {
  border-color: rgba(247,159,33,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.sc-service-card:hover::after { transform: scaleX(1); }

.sc-svc-icon {
  width: 56px; height: 56px;
  background: rgba(247,159,33,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.sc-svc-icon svg, .sc-svc-icon img {
  width: 28px; height: 28px;
  filter: brightness(0) saturate(100%) invert(66%) sepia(73%) saturate(480%) hue-rotate(356deg) brightness(101%) contrast(97%);
}
.sc-service-card:hover .sc-svc-icon {
  background: rgba(247,159,33,0.2);
}

.sc-svc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sc-svc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sc-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.sc-svc-link:hover { gap: 10px; color: var(--amber-light); }
.sc-svc-link-arrow {
  font-size: 16px;
  transition: var(--transition);
}

/* ================================================================
   NEWS SECTION
   ================================================================ */
.sc-news-section {
  background: var(--navy-mid);
}
.sc-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sc-news-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
}
.sc-news-card h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-border);
}
.sc-news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--navy-border);
  text-decoration: none;
  display: block;
}
.sc-news-item:last-child { border-bottom: none; }
.sc-news-date {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.sc-news-headline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: var(--transition);
}
.sc-news-item:hover .sc-news-headline { color: var(--amber); }

/* ================================================================
   CTA / CORPORATE PROFILE
   ================================================================ */
.sc-profile-section {
  background: var(--navy);
  padding: 100px 0;
}
.sc-profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sc-profile-form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.sc-form-group {
  margin-bottom: 18px;
}
.sc-form-group input,
.sc-form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
.sc-form-group input::placeholder,
.sc-form-group textarea::placeholder {
  color: var(--text-dim);
}
.sc-form-group input:focus,
.sc-form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(247,159,33,0.15);
}
.sc-profile-image {
  position: relative;
}
.sc-profile-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.sc-profile-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--amber);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(247,159,33,0.35);
}

/* ================================================================
   PARTNERS / CLIENTS
   ================================================================ */
.sc-partners-section {
  background: var(--navy-mid);
  padding: 64px 0;
}
.sc-partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.sc-partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.sc-partner-logo {
  opacity: 0.45;
  filter: grayscale(1) brightness(1.5);
  transition: var(--transition);
  max-height: 44px;
  width: auto;
}
.sc-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ================================================================
   PAGE BANNER (Inner Pages)
   ================================================================ */
.sc-page-banner {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.sc-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.55) 60%, rgba(10,14,26,0.3) 100%);
}
.sc-page-banner-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.sc-page-banner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.sc-page-banner h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 12px;
}
.sc-page-banner p {
  font-size: 17px;
  color: rgba(241,245,249,0.7);
  max-width: 500px;
}

/* ================================================================
   ABOUT PAGE — Tabs
   ================================================================ */
.sc-tabs-section { background: var(--navy); }
.sc-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 100px;
}
.sc-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  text-decoration: none;
}
.sc-tab-btn i, .sc-tab-btn svg {
  width: 18px;
  flex-shrink: 0;
  color: var(--text-dim);
}
.sc-tab-btn:hover {
  background: var(--navy-card);
  color: var(--text-white);
  border-color: var(--navy-border);
}
.sc-tab-btn.active {
  background: rgba(247,159,33,0.1);
  border-color: rgba(247,159,33,0.3);
  color: var(--amber);
}
.sc-tab-btn.active i, .sc-tab-btn.active svg { color: var(--amber); }

/* Team Cards */
.sc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sc-team-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.sc-team-card:hover {
  border-color: rgba(247,159,33,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.sc-team-header {
  background: var(--navy-mid);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.sc-team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--navy-border);
  flex-shrink: 0;
  background: var(--navy-border);
}
.sc-team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.sc-team-role {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}
.sc-team-expand {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
}
.sc-team-card.open .sc-team-expand { transform: rotate(180deg); color: var(--amber); }
.sc-team-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.sc-team-card.open .sc-team-body {
  max-height: 600px;
  padding: 20px 24px;
}
.sc-team-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.sc-team-body p:last-child { margin-bottom: 0; }

/* Vision/Mission/Core Values */
.sc-vmv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.sc-vmv-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
}
.sc-vmv-card:hover { border-color: rgba(247,159,33,0.3); }
.sc-vmv-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.sc-vmv-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 14px;
}
.sc-vmv-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.sc-core-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sc-core-value-pill {
  background: rgba(247,159,33,0.08);
  border: 1px solid rgba(247,159,33,0.2);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.sc-core-value-letter {
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.sc-core-value-word {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Exec Summary */
.sc-exec-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.sc-exec-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Accreditation */
.sc-accred-section { background: var(--navy-mid); }
.sc-accred-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.sc-accred-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-accred-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-border);
  font-size: 15px;
  color: var(--text-muted);
}
.sc-accred-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.sc-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sc-cert-img {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-cert-img img {
  max-height: 60px;
  width: auto;
  filter: grayscale(0.3) brightness(1.1);
}

/* ================================================================
   SERVICE PAGE
   ================================================================ */
.sc-svc-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-svc-page-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.sc-svc-page-card:hover {
  border-color: rgba(247,159,33,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.sc-svc-page-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sc-svc-page-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.85) 0%, transparent 60%);
}
.sc-svc-page-body {
  padding: 28px;
}
.sc-svc-page-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.sc-svc-page-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.sc-contact-section { background: var(--navy); }
.sc-contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.sc-contact-info-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.sc-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--navy-border);
}
.sc-contact-item:last-of-type { border-bottom: none; }
.sc-contact-icon {
  width: 40px; height: 40px;
  background: rgba(247,159,33,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  font-size: 16px;
}
.sc-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.sc-contact-value {
  font-size: 15px;
  color: var(--text-muted);
}
.sc-social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.sc-social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}
.sc-social-btn:hover {
  background: rgba(247,159,33,0.1);
  border-color: rgba(247,159,33,0.3);
  color: var(--amber);
}

.sc-contact-form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.sc-footer {
  background: #070B14;
  border-top: 1px solid var(--navy-border);
  padding: 72px 0 0;
}
.sc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.sc-footer-brand .scepter-logo {
  font-size: 20px;
  margin-bottom: 16px;
  display: inline-flex;
}
.sc-footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.sc-footer-col h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-border);
}
.sc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-footer-links li { margin-bottom: 12px; }
.sc-footer-links li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: var(--transition);
}
.sc-footer-links li a:hover { color: var(--amber); padding-left: 4px; }
.sc-footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dim);
}
.sc-footer-contact-item i { color: var(--amber); margin-top: 2px; }

.sc-footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}
.sc-footer-copy a {
  color: var(--amber);
  font-weight: 600;
}
.sc-footer-social {
  display: flex;
  gap: 12px;
}

/* ================================================================
   CAREER PAGE
   ================================================================ */
.sc-career-section { background: var(--navy); }
.sc-career-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.sc-career-card:hover {
  border-color: rgba(247,159,33,0.25);
  transform: translateX(4px);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.sc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.sc-reveal-delay-1 { transition-delay: 0.1s; }
.sc-reveal-delay-2 { transition-delay: 0.2s; }
.sc-reveal-delay-3 { transition-delay: 0.3s; }
.sc-reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(247,159,33,0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); background: var(--amber-light); }

/* ================================================================
   UTILITY
   ================================================================ */
.sc-bg-card  { background: var(--navy-card) !important; }
.sc-bg-mid   { background: var(--navy-mid) !important; }
.sc-border   { border: 1px solid var(--navy-border) !important; }
.sc-rounded  { border-radius: var(--radius) !important; }
.sc-rounded-lg { border-radius: var(--radius-lg) !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .sc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-svc-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .sc-core-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-stat-item:nth-child(2) { border-right: none; }
  .sc-stat-item:nth-child(3) { border-top: 1px solid var(--navy-border); }
  .sc-about-text { padding-left: 0; margin-top: 32px; }
  .sc-profile-inner { grid-template-columns: 1fr; gap: 40px; }
  .sc-accred-inner { grid-template-columns: 1fr; }
  .sc-contact-inner { grid-template-columns: 1fr; }
  .sc-team-grid { grid-template-columns: 1fr; }
  .sc-vmv-grid { grid-template-columns: 1fr; }
  .sc-core-values-row { grid-template-columns: repeat(2, 1fr); }
  .sc-services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .header-area { padding: 16px 24px; }
}

/* Full-width service card mobile fix */
@media (max-width: 768px) {
  .sc-svc-page-card[style*="grid-column"] {
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
  }
  .sc-svc-page-card[style*="grid-column"] .sc-svc-page-img {
    height: 200px !important;
    min-height: 0 !important;
  }
  .sc-service-card[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 998;
    padding: 80px 32px 40px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
  }
  .nav-menu.open ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .nav-menu.open ul li { width: 100%; }
  .nav-menu.open ul li a {
    display: block;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
  }
  .nav-switch { display: block; z-index: 999; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 4px; }
  .sc-services-grid { grid-template-columns: 1fr; }
  .sc-svc-page-grid { grid-template-columns: 1fr; }
  .sc-news-grid { grid-template-columns: 1fr; }
  .sc-footer-grid { grid-template-columns: 1fr; }
  .sc-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .sc-profile-form-card { padding: 28px 20px; }
  .sc-contact-form-card { padding: 28px 20px; }
  .sc-core-values-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sc-stats-grid { grid-template-columns: 1fr 1fr; }
  .sc-core-grid { grid-template-columns: 1fr; }
  .sc-core-values-row { grid-template-columns: 1fr 1fr; }
  .sc-hero-btns { flex-direction: column; }
  .sc-btn { justify-content: center; width: 100%; }
}
