/* SKI Theme - Shared Styles for all pages */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');


/* ============================================
       DESIGN SYSTEM
    ============================================ */
:root {
  --navy: #092354;
  --navy-light: #123a7a;
  --blue: #1a5dc8;
  --blue-soft: #dbeafe;
  --orange: #f97316;
  --orange-dark: #c2540a;
  --yellow: #fbbf24;
  --yellow-bg: #fffbeb;
  --dark: #071428;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #f4f8ff;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --shadow: 0 4px 20px rgba(9, 35, 84, 0.10);
  --shadow-md: 0 8px 32px rgba(9, 35, 84, 0.16);
  --shadow-lg: 0 20px 60px rgba(9, 35, 84, 0.20);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
       UTILITIES
    ============================================ */
.text-orange {
  color: var(--orange) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-dark-ski {
  background: var(--dark) !important;
}

.bg-surface {
  background: var(--surface) !important;
}

.badge-pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-orange {
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
}

.badge-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge-yellow {
  background: var(--yellow-bg);
  color: #92400e;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue);
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  opacity: 0.7;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

.divider-orange {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  margin: 20px 0;
}

.divider-orange.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
       BUTTONS
    ============================================ */
.btn-ski {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ski:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary-ski {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249, 115, 22, .35);
}

.btn-primary-ski:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .45);
}

.btn-outline-ski {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.btn-outline-ski:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--blue);
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--orange);
  transform: none;
}

.btn-ghost i {
  transition: transform 0.3s;
}

.btn-ghost:hover i {
  transform: translateX(5px);
}

/* ============================================
       PRELOADER
    ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

#preloader img {
  width: 180px;
  filter: brightness(0) invert(1);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  animation: load 1.2s ease forwards;
}

@keyframes load {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ============================================
       NAVBAR
    ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.topbar {
  background: var(--navy);
  padding: 7px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .7);
}

.topbar a {
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar .topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar .topbar-item i {
  color: var(--orange);
  font-size: 11px;
}

.navbar-main {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(9, 35, 84, .1);
  border-bottom: 3px solid var(--orange);
}

#navbar.scrolled .topbar {
  display: none;
}

.navbar-brand img {
  height: 44px;
  width: auto;
}

.nav-link-ski {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 20px 14px !important;
  position: relative;
  transition: color .2s;
}

.nav-link-ski::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-link-ski:hover {
  color: var(--orange) !important;
}

.nav-link-ski:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 200px;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 20px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--surface);
  color: var(--orange);
  padding-left: 28px;
}

.navbar-toggler {
  border: 2px solid var(--navy);
  border-radius: 6px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23092354' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
       HERO
    ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(9, 35, 84, .88) 0%,
      rgba(18, 58, 122, .72) 50%,
      rgba(9, 35, 84, .80) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, .18);
  border: 1px solid rgba(249, 115, 22, .35);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, .6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, .0);
  }
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-title .accent-y {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Right side hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  animation: heroImgFade 8s infinite;
}

@keyframes heroImgFade {

  0%,
  45% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: .8;
  }
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.hero-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.hero-badge.badge-1 {
  bottom: 32px;
  left: -32px;
}

.hero-badge.badge-2 {
  top: 40px;
  right: -32px;
}

/* Hero dots indicator */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active {
  background: var(--orange);
  width: 28px;
}

/* ============================================
       MARQUEE BAND
    ============================================ */
.marquee-band {
  background: linear-gradient(90deg, var(--orange) 0%, #f97316 50%, #ea580c 100%);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.marquee-item i {
  color: var(--yellow);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================
       SERVICES SECTION
    ============================================ */
#services {
  padding: 100px 0;
  background: var(--surface);
}

.services-header {
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
  overflow: hidden;
}

.service-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.si-blue {
  background: var(--blue-soft);
}

.si-orange {
  background: rgba(249, 115, 22, .10);
}

.si-yellow {
  background: var(--yellow-bg);
}

.si-green {
  background: rgba(16, 185, 129, .10);
}

.service-card:hover .service-icon-wrap {
  background: var(--navy);
}

.service-card:hover .service-icon-wrap img {
  filter: brightness(0) invert(1);
}

.service-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .2s;
}

.service-card:hover h6 {
  color: var(--navy);
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.service-arrow {
  margin-top: 16px;
  font-size: 18px;
  color: var(--blue-soft);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* ============================================
       ABOUT / DIVISIONS
    ============================================ */
#divisions {
  padding: 100px 0;
  background: var(--white);
}

.division-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.division-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.division-card .div-img {
  height: 240px;
  object-fit: cover;
  width: 100%;
  transition: transform .5s ease;
}

.division-card:hover .div-img {
  transform: scale(1.04);
}

.division-card .div-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.division-card .div-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.division-card .div-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.division-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.division-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  flex-grow: 1;
}

.division-card .div-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  transition: gap .2s, color .2s;
}

.division-card:hover .div-link {
  gap: 10px;
  color: var(--orange);
}

/* ============================================
       STATS BAND
    ============================================ */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .07);
  pointer-events: none;
}

#stats::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(251, 191, 36, .06);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-number .sup {
  color: var(--orange);
  font-size: .55em;
  vertical-align: super;
}

.stat-number .plus {
  color: var(--orange);
}

.stat-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 20px auto;
}

/* ============================================
       PARTNERS
    ============================================ */
#partners {
  padding: 80px 0;
  background: var(--surface);
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.partner-logo-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-width: 160px;
  box-shadow: var(--shadow);
}

.partner-logo-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.partner-logo-item img {
  max-height: 52px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .3s;
}

.partner-logo-item:hover img {
  filter: grayscale(0);
}

.partner-text {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.partner-text b {
  color: var(--navy);
}

/* ============================================
       CTA BANNER
    ============================================ */
#cta {
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .06);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-white {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--orange);
  font-weight: 800;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================
       CONTACT
    ============================================ */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .12);
  pointer-events: none;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-info-card .sub {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--yellow);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-form-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label-ski {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
  margin-bottom: 7px;
  display: block;
}

.form-input-ski {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
  appearance: none;
}

.form-input-ski:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 93, 200, .1);
}

.form-input-ski::placeholder {
  color: #a0aec0;
}

textarea.form-input-ski {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
       FOOTER
    ============================================ */
#footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--orange);
}

.footer-cert {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cert a {
  display: inline-block;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 10px 14px;
  transition: var(--transition);
}

.footer-cert a:hover {
  background: rgba(255, 255, 255, .14);
  border-color: var(--orange);
}

.footer-cert img {
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
}

.footer-cert img.cert-iso {
  filter: none;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
}

.footer-copy a {
  color: var(--yellow);
}

.footer-social-row {
  display: flex;
  gap: 8px;
}

.footer-soc {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.footer-soc:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
       SCROLL TO TOP
    ============================================ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(249, 115, 22, .45);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border: none;
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

/* ============================================
       RESPONSIVE
    ============================================ */
@media (max-width: 991px) {
  #hero {
    padding-top: 60px;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 40px;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-badge {
    display: none;
  }

  .hero-img-frame img {
    height: 320px;
  }

  .contact-info-card,
  .contact-form-card {
    margin-bottom: 24px;
  }

  #stats {
    padding: 48px 0;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 767px) {

  #services,
  #divisions,
  #partners,
  #contact {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-ski {
    width: 100%;
    justify-content: center;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
       MISC
    ============================================ */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.check-list li i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Tagline strip */
.tagline-strip {
  background: var(--yellow-bg);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

/* ============================================
   PAGE HERO / BREADCRUMB (for inner pages)
============================================ */
#page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

#page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .07);
  pointer-events: none;
}

#page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(251, 191, 36, .05);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, .18);
  border: 1px solid rgba(249, 115, 22, .35);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero-title .accent {
  color: var(--orange);
}

.page-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.breadcrumb-ski {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.breadcrumb-ski a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.breadcrumb-ski a:hover {
  color: var(--yellow);
}

.breadcrumb-ski .sep {
  color: rgba(255, 255, 255, .3);
}

.breadcrumb-ski .current {
  color: var(--orange);
}

/* ============================================
   CONTENT SECTIONS (inner pages)
============================================ */
.section-pad {
  padding: 88px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
}

.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.content-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.cci-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.cci-orange {
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
}

.cci-green {
  background: rgba(16, 185, 129, .12);
  color: #059669;
}

.cci-yellow {
  background: var(--yellow-bg);
  color: #d97706;
}

.content-card h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Sub-service link */
.sub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: gap .2s, color .2s;
}

.sub-link:hover {
  gap: 10px;
  color: var(--orange);
}

/* Feature split row */
.feature-split {
  padding: 88px 0;
}

.feature-split.alt-bg {
  background: var(--surface);
}

.feature-split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-split-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.feature-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .25);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* Table-like spec */
.spec-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.spec-row {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background: var(--surface);
}

.spec-key {
  font-weight: 600;
  color: var(--text);
  min-width: 160px;
}

.spec-val {
  color: var(--muted);
}

/* Highlight band */
.highlight-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.highlight-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .12);
  pointer-events: none;
}

.highlight-band h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}

.highlight-band p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.8;
}