/*--------------------------------------------------------------
# Alberta Smart Systems - Main CSS
--------------------------------------------------------------*/

:root {

  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Raleway", sans-serif;

  --ass-navy: #06182F;
  --ass-blue: #0A2E5D;
  --ass-accent: #1E73E8;
  --ass-white: #FFFFFF;

  --background-color: #06182F;
  --default-color: #444444;
  --heading-color: #0A2E5D;
  --accent-color: #1E73E8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: #ffffff;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 18px 0;
  background: rgba(6, 24, 47, 0.92);
  backdrop-filter: blur(8px);
}

.header .logo img {
  height: 65px;
  width: auto;
  display: block;
}

.header .cta-btn {
  color: #ffffff;
  background: var(--ass-accent);
  font-size: 14px;
  padding: 11px 28px;
  margin-left: 30px;
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 700;
  border: 2px solid var(--ass-accent);
}

.header .cta-btn:hover {
  background: #ffffff;
  color: var(--ass-navy);
  border-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a {
  color: rgba(255,255,255,0.86);
  padding: 18px 15px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 17, 35, 0.98) 0%,
    rgba(6, 24, 47, 0.90) 34%,
    rgba(6, 24, 47, 0.55) 68%,
    rgba(6, 24, 47, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 700px;
  padding-top: 60px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-line {
  width: 58px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 28px;
}

.hero p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 30px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-btn:hover {
  background: #ffffff;
  color: var(--navy);
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
  padding: 90px 0;
  overflow: hidden;
}

.light-background {
  background: #F4F8FC;
}

.section-title {
  text-align: center;
  padding-bottom: 55px;
}

.section-title h2 {
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 16px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ass-accent);
}

.section-title p {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  color: var(--ass-blue);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about img {
  border-radius: 18px;
}

.about h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ass-blue);
  margin-bottom: 22px;
}

.about p {
  line-height: 1.9;
}

.about ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  color: var(--ass-accent);
  font-size: 20px;
  margin-right: 12px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .service-item {
  background: #ffffff;
  padding: 45px 32px;
  border-radius: 16px;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(10,46,93,0.08);
  box-shadow: 0 12px 35px rgba(10,46,93,0.06);
}

.services .service-item:hover {
  transform: translateY(-8px);
  border-color: var(--ass-accent);
}

.services .icon {
  width: 72px;
  height: 72px;
  background: var(--ass-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.services .icon i {
  color: #ffffff;
  font-size: 32px;
}

.services h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ass-blue);
}

.services p {
  line-height: 1.8;
  color: #666666;
}

/*--------------------------------------------------------------
# Features / Industries
--------------------------------------------------------------*/

.features img {
  border-radius: 18px;
}

.features h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ass-blue);
  margin-bottom: 22px;
}

.features p {
  line-height: 1.9;
}

.features ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.features ul li {
  padding: 12px 0;
}

.features ul i {
  color: var(--ass-accent);
  margin-right: 12px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-item {
  margin-bottom: 35px;
}

.contact .info-item i {
  font-size: 24px;
  color: var(--ass-accent);
  width: 58px;
  height: 58px;
  background: rgba(30,115,232,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.contact .info-item h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ass-blue);
}

.contact .php-email-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(10,46,93,0.06);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  padding: 14px 15px;
}

.contact .php-email-form button {
  background: var(--ass-accent);
  border: 2px solid var(--ass-accent);
  padding: 14px 36px;
  color: #ffffff;
  transition: 0.4s;
  border-radius: 6px;
  font-weight: 700;
}

.contact .php-email-form button:hover {
  background: var(--ass-blue);
  border-color: var(--ass-blue);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background: var(--ass-navy);
  color: rgba(255,255,255,0.82);
  padding: 80px 0 35px 0;
}

.footer .logo img,
.footer-about img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}
.footer-tagline {
  color: #ffffff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.footer h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer p,
.footer li {
  line-height: 1.9;
}

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

.footer ul li {
  padding-bottom: 10px;
}

.footer ul i {
  color: var(--ass-accent);
  margin-right: 8px;
}

.footer .copyright {
  margin-top: 45px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--ass-accent);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
}

.scroll-top:hover {
  background: var(--ass-blue);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .hero h2 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-tagline {
    font-size: 17px !important;
    letter-spacing: 4px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding-top: 150px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 30px;
  }

  .about h3,
  .features h3 {
    font-size: 30px;
  }

  .header .logo img {
    max-height: 50px;
  }

}

/* Mobile Navigation Fix */
.mobile-nav-toggle {
  display: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  line-height: 0;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
    z-index: 10000;
  }

  .navmenu ul {
    display: none;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(3, 17, 35, 0.96);
    z-index: 9999;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
    position: absolute;
    top: 90px;
    left: 20px;
    right: 20px;
    padding: 20px 0;
    background: #ffffff;
    border-radius: 10px;
  }

  .mobile-nav-active .navmenu ul li {
    padding: 0;
  }

  .mobile-nav-active .navmenu ul li a {
    display: block;
    color: #06182F;
    padding: 14px 24px;
    font-size: 16px;
  }

  .mobile-nav-active .navmenu ul li a:hover,
  .mobile-nav-active .navmenu ul li a.active {
    color: #1E73E8;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: fixed;
    top: 32px;
    right: 24px;
  }
}