:root {
  --bg: #07111d;
  --bg2: #0b1f33;
  --panel: #10263c;
  --panel2: #132d45;
  --text: #eef6fb;
  --muted: #a7b7c6;
  --steel: #6fa8c9;
  --ice: #8bd9ff;
  --amber: #f5a623;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  text-decoration: none
}

.section-padding {
  padding: 96px 0
}

.bg-deep {
  background: linear-gradient(180deg, var(--bg), #081827)
}

.bg-panel {
  background: linear-gradient(180deg, #0b1f33, #081827)
}

.eyebrow {
  color: var(--ice);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: 12px;
  margin-top: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -1.7px;
  line-height: 1.05;
  margin-bottom: 18px;
}

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

.section-subtitle {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 790px;
}

.btn-ice {
  background: linear-gradient(135deg, var(--ice), #3baee8);
  color: #06111c !important;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(139, 217, 255, .22);
}

.btn-ice:hover {
  transform: translateY(-2px)
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), #ffc45f);
  color: #07111d !important;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(245, 166, 35, .22);
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff !important;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 850;
}

.navbar {
  background: rgba(7, 17, 29, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar-brand {
  color: #fff !important;
  font-weight: 950;
  letter-spacing: -.7px;
  font-size: 1.45rem;
}

.brand-mark {
  color: var(--ice)
}

.nav-link {
  color: rgba(255, 255, 255, .76) !important;
  font-weight: 760;
  margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ice) !important
}

.call-pill {
  background: rgba(139, 217, 255, .12);
  border: 1px solid rgba(139, 217, 255, .35);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96) 0%, rgba(7, 17, 29, .82) 48%, rgba(7, 17, 29, .46) 100%),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0), var(--bg));
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--ice)
}

.hero-text {
  color: rgba(255, 255, 255, .84);
  font-size: 1.16rem;
  line-height: 1.78;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .9);
  font-weight: 850;
  margin: 4px;
  font-size: .9rem;
}

.quote-panel {
  background: rgba(16, 38, 60, .94);
  color: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 217, 255, .22);
}

.quote-panel .mini {
  display: inline-block;
  background: rgba(139, 217, 255, .13);
  color: var(--ice);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .55)
}

.form-select option {
  color: #111
}

.trust-bar {
  background: #06101b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 24px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0
}

.trust-item i {
  font-size: 1.35rem;
  color: var(--ice);
  margin-bottom: 8px
}

.trust-item strong {
  display: block;
  color: #fff;
  font-weight: 950
}

.service-card,
.app-card,
.benefit-card,
.step-card,
.testimonial,
.faq-card {
  background: linear-gradient(180deg, var(--panel), #0d2236);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: .25s ease;
}

.service-card:hover,
.app-card:hover,
.benefit-card:hover,
.step-card:hover {
  transform: translateY(-7px)
}

.service-img {
  height: 250px;
  background-size: cover;
  background-position: center
}

.service-card .body {
  padding: 28px
}

.service-tag {
  display: inline-block;
  background: rgba(139, 217, 255, .12);
  color: var(--ice);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.weather-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(139, 217, 255, .15), transparent 30%),
    radial-gradient(circle at 85% 65%, rgba(245, 166, 35, .10), transparent 32%),
    linear-gradient(180deg, #06101b, #0b1f33);
}

.weather-box {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  height: 100%;
}

.weather-box i,
.app-card i,
.benefit-card i {
  font-size: 2rem;
  color: var(--ice);
  margin-bottom: 16px
}

.feature-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.feature-row:last-child {
  border-bottom: 0
}

.step-card,
.app-card,
.benefit-card,
.testimonial {
  padding: 28px
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(139, 217, 255, .12);
  color: var(--ice);
  font-weight: 950;
  margin-bottom: 18px;
}

.gallery-tile {
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.gallery-tile:hover {
  transform: scale(1.018)
}

.gallery-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, .82));
}

.gallery-tile span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-weight: 950;
  font-size: 1.2rem;
}

.area-pill {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  margin: 6px;
  font-weight: 850;
  color: #fff;
}

.stars {
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 15px
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96), rgba(7, 17, 29, .68)),
    url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-radius: 34px;
  padding: 58px;
  color: #fff;
  border: 1px solid var(--line);
}

.calgarycoat {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96), rgba(7, 17, 29, .72)),
    url('../img/calgarycoat_banner.jpg') center/cover no-repeat !important;
}

.metallic_banner {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96), rgba(7, 17, 29, .72)),
    url('../img/metallic_banner.jpg') center/cover no-repeat !important;
}

.concrete_banner {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96), rgba(7, 17, 29, .72)),
    url('../img/concrete_banner.jpg') center/cover no-repeat !important;
}


.inner-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, .96), rgba(7, 17, 29, .72)),
    url('../img/flake_banner.png') center/cover no-repeat;
}

.inner-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -2.4px;
  line-height: 1;
}

.content-block p,
.content-block li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.accordion-item {
  background: var(--panel);
  color: #fff;
  border: 1px solid var(--line);
}

.accordion-button {
  background: var(--panel);
  color: #fff;
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  background: #12314d;
  color: var(--ice);
}

.accordion-body {
  color: var(--muted)
}

footer {
  background: #050c14;
  color: rgba(255, 255, 255, .72);
  padding: 62px 0 28px;
  border-top: 1px solid var(--line);
}

footer h5,
footer h6 {
  color: #fff;
  font-weight: 950
}

footer a {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 10px
}

footer a:hover {
  color: var(--ice)
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: var(--ice);
  color: #06111c;
  font-size: 1.45rem;
  z-index: 999;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .3);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .75s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

@media(max-width:991px) {
  .hero {
    padding: 130px 0 80px
  }

  .quote-panel {
    margin-top: 36px
  }

  .section-padding {
    padding: 70px 0
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .cta-band {
    padding: 36px 24px;
    border-radius: 24px
  }
}

@media(max-width:575px) {

  .hero h1,
  .inner-hero h1 {
    letter-spacing: -1.6px
  }

  .btn-ice,
  .btn-amber,
  .btn-outline-custom {
    width: 100%;
    margin-bottom: 10px
  }

  .floating-call {
    display: grid
  }

  .service-img {
    height: 220px
  }
}

/* VIDEO CARD */
.video-card {
  height: 480px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* IMAGE GALLERY */
.gallery-item {
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.videoCarousel .owl-nav {
  position: relative;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* BUTTON STYLE */
.videoCarousel .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000 !important;
  color: #fff !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  transition: all 0.3s ease;
}

/* HOVER */
.videoCarousel .owl-nav button:hover {
  background: #000 !important;
  transform: scale(1.1);
}

/* DISABLED */
.videoCarousel .owl-nav button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* DOTS BELOW BUTTONS */
.videoCarousel .owl-dots {
  margin-top: 10px;
  text-align: center;
}








.navbar-brand img {
  height: 80px;
  object-fit: contain;
  /* transform: scale(1.2); */

}

.footerLogo {
  height: 80px;
  object-fit: contain;
  /* transform: scale(1.2); */
}

.hero {
  margin-top: 30px;
}

.navbar {
  padding: 0px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
}

.consent-label .checkBox {
  margin-top: 5px;
  /* aligns checkbox with first line */
  margin-right: 15px;
  /* space between checkbox and text */
}

.consent-label span {
  display: block;
  line-height: 1.5;
  font-size: 12px;
}

.small {
  font-size: 12px !important;
}