/* ============================================================
   SUNPOWER EMPLOYMENT — Main Stylesheet
   Design: Deep Navy + Gold | Corporate Prestige
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* --navy:        #0D1B3E; */
  --navy:        #163D6E;
  --navy-dark:   #080F22;
  --navy-mid:    #162047;
  --navy-light:  #1E2D5A;
  /* --gold:        #C9A84C; */
  --gold:        #FCA91F;
  /* --gold-light:  #E2C06B; */
  --gold-light:  #FCCB5F;
  /* --gold-dark:   #A8862E; */
  --gold-dark:   #fd8222;
  --gold-pale:   #F9F2DF;
  --white:       #FFFFFF;
  --off-white:   #F6F7F9;
  --gray-light:  #E8EAEE;
  --gray-mid:    #A0A8BB;
  --gray-dark:   #5A6380;
  --text-main:   #1A1F36;
  --text-body:   #4A5270;
  --text-muted:  #8892AA;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   24px;

  --shadow-card: 0 4px 24px rgba(13,27,62,0.10);
  --shadow-hover: 0 12px 40px rgba(13,27,62,0.18);
  --shadow-nav:  0 2px 20px rgba(13,27,62,0.12);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.section-eyebrow.center::before,
.section-eyebrow.center::after {
  content: '||';
  display: inline;
  width: auto;
  height: auto;
  background: none;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}

.section-eyebrow.center {
  justify-content: center;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text-main); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-title.white { color: var(--white); }

.section-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,62,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

/* ============================================================
   TOPBAR
   ============================================================ */

#topbar {
  background: var(--navy-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  position: relative;
  z-index: 101;
  transition: var(--transition);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.72);
  transition: var(--transition-fast);
}

.topbar-item:hover { color: var(--gold); }

.topbar-item i {
  font-size: 14px;
  color: var(--gold);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: var(--transition-fast);
}

.topbar-links a:hover { color: var(--gold); }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  transition: var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

#main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-nav);
  transition: var(--transition);
}

#main-header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(13,27,62,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  max-width: 1220px;
  margin: 0 auto;
  height: 78px;
  position: relative;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 54px;
  background: var(--gold);
  transform: rotate(15deg);
  opacity: 0.25;
}

.logo-mark span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Navigation Arrow Accent (chevron shape from ref) */
.header-arrow-accent {
  position: absolute;
  left: 200px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 78px solid transparent;
  border-left: 28px solid var(--gray-light);
  opacity: 0.5;
  pointer-events: none;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Nav Dropdown */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item > a i { font-size: 12px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(13,27,62,0.18);
  border: 1px solid var(--gray-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
  overflow: hidden;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition-fast);
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 26px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
}

.header-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  animation: phone-ring 3s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(15deg); }
  90% { transform: rotate(-15deg); }
  95% { transform: rotate(10deg); }
}

.header-phone-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.header-phone-text span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open { max-height: 600px; }

.mobile-nav-inner {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-inner a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 4px;
  border-bottom: 1px solid var(--gray-light);
  display: block;
}

.mobile-nav-inner a:hover { color: var(--navy); }

.mobile-nav-inner .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,15,34,0.88) 0%,
    rgba(13,27,62,0.72) 45%,
    rgba(13,27,62,0.30) 100%
  );
}

/* Gradient overlay for readability */
.hero-slide-bg-1 {
  background-image: url('../image/hero/photo-1.avif');
}
.hero-slide-bg-2 {
  background-image: url('../image/hero/photo-2.avif');
}
.hero-slide-bg-3 {
  background-image: url('../image/hero/photo-3.avif');
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-badge {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-headline .accent-word {
  position: relative;
  display: inline-block;
  color: var(--gold-light);
}

.hero-headline .accent-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-stat {
  padding: 20px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* Hero Slide Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* ============================================================
   TRUST BAR
   ============================================================ */

#trust-bar {
  background: var(--navy);
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.trust-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-eyebrow { margin-bottom: 12px; }

.about-title { margin-bottom: 12px; }

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
}

.about-feature-text span {
  font-size: 13px;
  color: var(--text-body);
}

/* About Image Block */
.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Gold corner accent — top right */
.about-accent-corner {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 3;
}

/* Bottom left corner accent */
.about-accent-corner-bl {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid var(--navy);
  border-left: 4px solid var(--navy);
  z-index: 3;
}

/* Floating stat badge */
.about-stat-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 16px 40px rgba(201,168,76,0.4);
  z-index: 4;
}

.about-stat-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-stat-badge .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

/* Large watermark word behind image */
.about-watermark {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  z-index: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

#services {
  background: var(--off-white);
  position: relative;
}

.services-top {
  text-align: center;
  margin-bottom: 60px;
}

.services-top .section-body {
  max-width: 580px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  position: relative;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  z-index: 1;
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  gap: 10px;
}

/* ============================================================
   INTERNATIONAL SECTION
   ============================================================ */

#international {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#international::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=60&auto=format') center/cover no-repeat;
  opacity: 0.08;
}

.intl-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.market-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.market-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.market-flag {
  font-size: 40px;
  margin-bottom: 14px;
}

.market-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.market-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.intl-disclaimer {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.intl-disclaimer i { color: var(--gold); margin-right: 6px; }

/* ============================================================
   WHY CHOOSE US / FEATURE STRIP
   ============================================================ */

#why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.why-card:hover::after { transform: scaleX(1); }

.why-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

#process {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

#process::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}

.process-top {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  z-index: 2;
}

.process-step {
  padding: 40px 28px;
  text-align: center;
  position: relative;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  background: rgba(201,168,76,0.08);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--navy-dark);
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   JOBS SECTION
   ============================================================ */

#jobs {
  background: var(--white);
}

.jobs-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-industry-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  white-space: nowrap;
}

.job-type-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-full { background: rgba(16,185,129,0.1); color: #059669; }
.badge-contract { background: rgba(59,130,246,0.1); color: #2563EB; }
.badge-part { background: rgba(139,92,246,0.1); color: #7C3AED; }

.job-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-body);
}

.job-meta-item i {
  font-size: 14px;
  color: var(--gold-dark);
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  font-size: 12px;
  padding: 3px 10px;
  background: var(--off-white);
  color: var(--text-body);
  border-radius: 4px;
  border: 1px solid var(--gray-light);
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.job-posted {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   EMPLOYERS SECTION
   ============================================================ */

#employers {
  background: var(--off-white);
}

.employer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.employer-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-light);
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6380' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ============================================================
   JOB SEEKERS SECTION
   ============================================================ */

#job-seekers {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#job-seekers::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.02);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.seeker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.seeker-content .section-body {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.seeker-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.seeker-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.seeker-benefit i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.seeker-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.seeker-form-wrap .form-group input,
.seeker-form-wrap .form-group select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.seeker-form-wrap .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.seeker-form-wrap .form-group input:focus,
.seeker-form-wrap .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.1);
}

.seeker-form-wrap .form-group label { color: rgba(255,255,255,0.7); }

.seeker-form-wrap .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  color: rgba(255,255,255,0.5);
}

/* File upload */
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-align: center;
}

.file-upload-label:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.file-upload-label i { font-size: 22px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */

#faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left .section-body {
  margin-bottom: 36px;
}

.faq-contact-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--white);
}

.faq-contact-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-contact-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.faq-contact-item:last-child { border-bottom: none; }

.faq-contact-item i { color: var(--gold); font-size: 16px; }

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}

.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.accordion-trigger:hover { background: var(--off-white); }

.accordion-trigger.open { background: var(--off-white); }

.accordion-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-trigger.open .accordion-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body.open { max-height: 300px; }

.accordion-answer {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */

#contact-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

#contact-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text .section-title { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 500px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

/* ============================================================
   FOOTER
   ============================================================ */

#footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { margin-bottom: 20px; }

.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 500;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--gold);
  opacity: 0;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-copy a { color: var(--gold-light); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(12px);
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS (on scroll)
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .about-grid,
  .employer-grid,
  .seeker-grid,
  .faq-grid { gap: 48px; }
  
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid,
  .employer-grid,
  .seeker-grid,
  .faq-grid,
  .cta-inner { grid-template-columns: 1fr; }

  .about-image-wrap { order: -1; max-width: 480px; margin: 0 auto; }
  .about-stat-badge { bottom: 12px; right: 12px; }
  .about-watermark { display: none; }

  .cta-actions { flex-direction: row; align-items: center; }

  .hero-stats { flex-wrap: wrap; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:last-child { border-bottom: none; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .topbar-left { display: none; }

  .header-phone-text { display: none; }
}

@media (max-width: 640px) {
  .section-pad { padding: 70px 0; }
  
  .hero-headline { font-size: clamp(32px, 8vw, 48px); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-stats { width: 100%; }
  
  .trust-item { padding: 8px 16px; }
  .trust-item:not(:first-child) { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .trust-bar-inner { flex-direction: column; }
  
  .about-features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .employer-form-wrap { padding: 28px 20px; }
  .seeker-form-wrap { padding: 28px 20px; }
  
  .jobs-grid { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .process-step:not(:last-child)::after { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  #back-to-top { bottom: 20px; right: 20px; }
}