/* ====================================================
   HEAT CABLE DE-ICING SYSTEMS — style.css
   ==================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ice: #00bfff;
  --ice-dk: #0099cc;
  --ice-lt: #b3ecff;
  --electric: #00e5ff;
  --frost: #7dd3fc;
  --dark: #0a0f1e;
  --dark2: #0d1627;
  --dark3: #132040;
  --gray: #6b7280;
  --gray-lt: #9ca3af;
  --white: #ffffff;
  --off-white: #f0f7ff;
  --slate: #0f1f3d;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 191, 255, .15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .3);

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Typography helpers ---------- */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
  text-align: center;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--ice) 0%, var(--electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background .25s;
}

.btn:hover::after {
  background: rgba(255, 255, 255, .08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 191, 255, .4);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 191, 255, .35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, .15) !important;
}

.btn-white {
  background: #fff;
  color: var(--ice-dk);
  font-weight: 800;
}

.btn-white:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, .3) !important;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 1.1rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, .95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  padding: .7rem 0;
}

.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  margin-right: auto;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-accent {
  color: var(--ice);
}

.nav-links {
  display: flex;
  gap: .25rem;
}

.nav-link {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  position: relative;
  overflow: visible;
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, .5);
}

.cta-pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: .5;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 10, 25, .92) 0%,
      rgba(5, 10, 25, .60) 60%,
      rgba(0, 191, 255, .18) 100%);
}

/* ---- Snowflake animation ---- */
.snowflakes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -5%;
  color: rgba(255, 255, 255, .6);
  font-size: 1.2rem;
  animation: snowfall linear infinite;
  user-select: none;
}

.snowflake:nth-child(1) {
  left: 5%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: .9rem;
}

.snowflake:nth-child(2) {
  left: 12%;
  animation-duration: 12s;
  animation-delay: 2s;
  font-size: 1.4rem;
}

.snowflake:nth-child(3) {
  left: 22%;
  animation-duration: 9s;
  animation-delay: 4s;
  font-size: .8rem;
}

.snowflake:nth-child(4) {
  left: 35%;
  animation-duration: 11s;
  animation-delay: 1s;
  font-size: 1.1rem;
}

.snowflake:nth-child(5) {
  left: 48%;
  animation-duration: 7s;
  animation-delay: 3s;
  font-size: .7rem;
}

.snowflake:nth-child(6) {
  left: 58%;
  animation-duration: 14s;
  animation-delay: 0.5s;
  font-size: 1.3rem;
}

.snowflake:nth-child(7) {
  left: 67%;
  animation-duration: 10s;
  animation-delay: 2.5s;
  font-size: .85rem;
}

.snowflake:nth-child(8) {
  left: 75%;
  animation-duration: 8s;
  animation-delay: 1.5s;
  font-size: 1rem;
}

.snowflake:nth-child(9) {
  left: 84%;
  animation-duration: 13s;
  animation-delay: 3.5s;
  font-size: .95rem;
}

.snowflake:nth-child(10) {
  left: 93%;
  animation-duration: 9s;
  animation-delay: 0.8s;
  font-size: 1.2rem;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: .8;
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

/* floating badges */
.hero-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 191, 255, .3);
  border-radius: var(--radius-md);
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
}

.hero-badge--tl {
  top: 16%;
  left: 5%;
}

.hero-badge--tr {
  top: 22%;
  right: 5%;
}

.badge-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 7rem 0 5rem;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ice);
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--electric);
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
}

/* scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow-inner {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 191, 255, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 191, 255, .9);
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 6rem 0;
  background: var(--off-white);
}

.services .section-title,
.services .section-tag {
  text-align: center;
  display: block;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 191, 255, .2);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img {
  transition: transform .6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 60, .5), transparent);
}

.service-body {
  padding: 2rem;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--dark);
}

.service-desc {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.75rem;
}

.service-list li {
  color: var(--dark);
  font-size: .9rem;
  font-weight: 500;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--ice);
  font-weight: 700;
  font-size: .95rem;
  transition: gap .2s;
}

.service-cta:hover {
  gap: .6rem;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--dark);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 191, 255, .1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
}

.trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .15);
}

/* =============================================
   SERVICE IMAGE BADGE
   ============================================= */
.service-img-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
  z-index: 5;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0077aa 0%, #00bfff 50%, #00e5ff 100%);
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516912481808-3406841bd33c?w=800&q=60') center/cover;
  opacity: .07;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-label {
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .3rem;
  font-style: italic;
}

.cta-banner-title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: 6rem 0;
  background: var(--dark2);
}

.why-us .section-tag,
.why-us .section-title,
.why-us .section-sub {
  color: #fff;
}

.why-us .section-sub {
  color: rgba(255, 255, 255, .6);
}

/* Two-column layout */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

.why-img-col {
  position: relative;
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.why-img-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.why-img-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.why-img-card-text {
  font-size: .8rem;
  font-weight: 600;
  max-width: 120px;
  line-height: 1.35;
  opacity: .9;
}

.why-content-col {
  padding-top: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 191, 255, .1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: background .35s, transform .35s, border-color .35s;
}

.why-card:hover {
  background: rgba(0, 191, 255, .07);
  border-color: rgba(0, 191, 255, .3);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.why-card h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.why-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  line-height: 1.6;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 6rem 0;
  background: #f5f9ff;
}

.reviews .section-tag {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.reviews .section-title {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0, 100, 180, .07);
  border: 1px solid rgba(0, 191, 255, .1);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 191, 255, .1);
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 100, 180, .12);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.review-text {
  color: #374151;
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}

.review-author span {
  font-size: .78rem;
  color: var(--gray);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 6rem 0;
  background: var(--off-white);
}

.gallery .container {
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 10, 30, .85), transparent);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 1.5rem .9rem .6rem;
  transform: translateY(100%);
  transition: transform .35s ease;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 6rem 0;
  background: var(--dark3);
}

.process .section-tag,
.process .section-title {
  color: #fff;
  text-align: center;
  display: block;
  margin-inline: auto;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  padding: 1.5rem;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--ice), var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.step-content h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.step-content p {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  line-height: 1.6;
}

.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--electric));
  opacity: .35;
  margin-bottom: 1rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 6rem 0;
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  font-size: 1.4rem;
  margin-top: .1rem;
}

.ci-label {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.ci-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

a.ci-value {
  color: var(--ice);
  transition: color .2s;
}

a.ci-value:hover {
  color: var(--electric);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Contact form */
.contact-form-wrap {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 191, 255, .12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(0, 191, 255, .2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .95rem;
  padding: .75rem 1rem;
  font-family: var(--font);
  transition: border-color .25s, background .25s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group select option {
  background: #0a1628;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice);
  background: rgba(0, 191, 255, .06);
}

.form-note {
  color: rgba(255, 255, 255, .4);
  font-size: .78rem;
  margin-top: .9rem;
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .35);
  border-radius: var(--radius-sm);
  color: #6ee7b7;
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
  margin-bottom: .75rem;
}

.footer-desc {
  color: rgba(255, 255, 255, .45);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: .75rem;
}

.footer-address {
  color: rgba(255, 255, 255, .35);
  font-size: .82rem;
  line-height: 1.65;
}

.footer-address a {
  color: var(--ice);
  font-weight: 600;
  transition: color .2s;
}

.footer-address a:hover {
  color: var(--electric);
}

.footer-links h5,
.footer-contact h5 {
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--ice);
}

.footer-contact p {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: .6rem;
}

.footer-contact a {
  color: var(--ice);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--electric);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-img-col {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-left {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, .97);
    flex-direction: column;
    padding: 1.5rem;
    gap: .25rem;
    border-top: 1px solid rgba(0, 191, 255, .12);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
  }

  .navbar.scrolled {
    position: fixed;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .g-tall {
    grid-row: span 1;
  }

  .g-wide {
    grid-column: span 2;
  }

  .process-connector {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .process-step {
    max-width: 100%;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-left {
    grid-column: span 1;
  }

  .snowflake {
    display: none;
  }

  .snowflake:nth-child(odd) {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-badge--tr {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .g-wide {
    grid-column: span 1;
  }
}