@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #020c19; /* Background color for the entire website, including individual sections */
  --default-color: #fafdff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9018fe; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #141e2b; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d8e4f0;  /* The default color of the main navmenu links */
  --nav-hover-color: #9018fe; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1b2634; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1b2634; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fafdff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #9018fe; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0b1727;
  --surface-color: #101c2d;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #020c19;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* --- SKY SENTRY GLOBAL HEADERS & BLOBS --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.section-header .trust-line {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #0FF4E2;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.unseen-gradient {
  background: linear-gradient(135deg, #0FF4E2 10%, #9018FE 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #0c1623;
  --surface-color: #1b2430;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  /* Updated to match Autel Orange signature color */
  color: #9018fe;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  text-decoration: none;
}

.header .topbar .contact-info i a:hover {
  /* Purple hover to match site branding */
  color: #9018fe;
  text-decoration: none;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  /* Orange hover for social icons to match drone */
  color: #9018fe;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .navmenu .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .navmenu .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .navmenu .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .navmenu .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .extended-dropdown-2 ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .navmenu .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .navmenu .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .navmenu .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .navmenu .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .navmenu .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .navmenu .extended-dropdown-2 ul a:hover,
  .navmenu .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .navmenu .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  /* Social Links matching Topbar/Nav Transition Logic */
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .social-links {
  display: flex;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Link Logic Matched to Navmenu */
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  position: relative;
  padding: 2px 0;
  transition: 0.3s;
  text-decoration: none;
  /* The Animated Underline Logic from Navmenu */
}

.footer .footer-links ul a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a:hover:before {
  visibility: visible;
  width: 100%;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-family: var(--nav-font);
}

.footer .footer-contact a {
  transition: 0.3s;
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--background-color), #fff 2%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
  font-weight: 500;
}

.footer .copyright .sitename {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .credits {
  margin-top: 6px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

/* --- MOBILE SPACING FIX --- */
@media (max-width: 991px) {
  .hero-2 {
    /* Reduced top/bottom padding for mobile to bring content together */
    padding: 60px 0;
  }

  .hero-2 .hero-visual {
    /* Reduced margin-top from 40px to 20px */
    margin-top: 20px;
  }

  /* Ensures buttons don't take up too much vertical space on very narrow phones */
  .hero-2 .hero-buttons {
    margin-top: 20px;
    gap: 12px;
  }
}

/* --- TYPOGRAPHY --- */
.hero-2 h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  /* Keeps text above blobs */
}

.hero-2 .hero-subtitle-clean {
  display: block;
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 18px;
  text-transform: uppercase;
}

/* --- BUTTONS --- */
.hero-2 .hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #0FF4E2 0%, #9018FE 100%);
  color: #000 !important;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(15, 244, 226, 0.2);
  text-decoration: none;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(144, 24, 254, 0.4);
  color: #fff !important;
}

.btn-call-glass {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: 0.3s ease;
}

/* --- VIDEO & VISUALS --- */
.video-frame-clean {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(144, 24, 254, 0.1);
  line-height: 0;
  z-index: 2;
}

.hero-video-element {
  width: 100%;
  height: auto;
}

.hero-2 .floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(6, 6, 6, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  z-index: 3;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
  padding: 100px 0 80px;
  background-color: #060606;
  z-index: 1;
  /* Establishes stacking context */
  position: relative;
  overflow: hidden;
}

/* --- SERVICE / CAPABILITY ITEMS --- */
.services .service-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.services .service-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Card Content Styling */
.services .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services .icon-box i {
  font-size: 24px;
  color: #fff;
}

.services h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.services .badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(144, 24, 254, 0.1);
  color: #b380ff;
  border: 1px solid rgba(144, 24, 254, 0.2);
  border-radius: 50px;
  margin-bottom: 15px;
}

.services p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- BLOBS (The fix for the green/cyan visibility) --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.18;
  /* Increased slightly for better visibility */
  border-radius: 50%;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: #9018FE;
}

.blob-2 {
  bottom: 10%;
  /* Moved UP from -150px so it's visible in the section */
  left: -100px;
  width: 500px;
  height: 500px;
  background: #0FF4E2;
  /* Cyan/Green */
}

/* --- AUTOMATED BORDER LOGIC --- */
/* Desktop & Large Tablets (3 columns): Cycle colors every 3 items */
@media (min-width: 992px) {
  .services .row>div:nth-child(3n+1) .service-item {
    border-left: 4px solid #ccff00 !important;
  }

  /* Lime */
  .services .row>div:nth-child(3n+2) .service-item {
    border-left: 4px solid #00f2ff !important;
  }

  /* Cyan */
  .services .row>div:nth-child(3n+3) .service-item {
    border-left: 4px solid #a64dff !important;
  }

  /* Purple */
}

/* Medium Tablets (2 columns): Cycle colors every 2 items to keep them alternating */
@media (min-width: 768px) and (max-width: 991px) {
  .services .row>div:nth-child(odd) .service-item {
    border-left: 4px solid #ccff00 !important;
  }

  /* Lime */
  .services .row>div:nth-child(even) .service-item {
    border-left: 4px solid #00f2ff !important;
  }

  /* Cyan */
  /* Note: Purple is omitted here to keep a clean alternating look on 2-col grids */
}

/* Mobile (1 column): Cycle through all three colors vertically */
@media (max-width: 767px) {
  .services .row>div:nth-child(3n+1) .service-item {
    border-left: 4px solid #ccff00 !important;
  }

  .services .row>div:nth-child(3n+2) .service-item {
    border-left: 4px solid #00f2ff !important;
  }

  .services .row>div:nth-child(3n+3) .service-item {
    border-left: 4px solid #a64dff !important;
  }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 767px) {
  .certifications {
    padding: 60px 0;
  }

  .services .service-item {
    padding: 25px;
    flex-direction: column;
    gap: 15px;
  }

  .services h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 {
  position: relative;
  overflow: hidden;
  background-color: #060606;
  padding: 100px 0;
  z-index: 1;
}

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

/* --- BACKGROUND BLOBS --- */
.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.faq-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.12;
  border-radius: 50%;
}

.faq-blob-1 {
  bottom: -10%;
  /* Adjusted for better visibility */
  left: -10%;
  width: 600px;
  height: 600px;
  background: #0FF4E2;
  /* Cyan Glow */
}

.faq-blob-2 {
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: #9018FE;
  /* Purple Glow */
}

/* --- TABS (Nav Pills) --- */
.faq-2 .faq-tabs {
  margin-bottom: 40px;
  text-align: center;
}

.faq-2 .nav-pills {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: inline-flex;
}

.faq-2 .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border: none;
}

.faq-2 .nav-link.active {
  background: linear-gradient(135deg, #0FF4E2 0%, #9018FE 100%) !important;
  color: #000 !important;
  /* High contrast black on gradient */
  box-shadow: 0 4px 15px rgba(15, 244, 226, 0.3);
}

/* --- FAQ ACCORDION ITEMS --- */
.faq-2 .faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-2 .faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(15, 244, 226, 0.4);
}

.faq-2 .faq-item h3 {
  padding: 20px 25px;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  position: relative;
  z-index: 3;
}

.faq-2 .faq-item .num {
  color: #0FF4E2;
  background: rgba(15, 244, 226, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(15, 244, 226, 0.2);
}

.faq-2 .faq-item .faq-toggle {
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  transition: 0.3s;
  font-size: 1.2rem;
}

.faq-2 .faq-item.faq-active {
  border-color: #9018FE;
}

.faq-2 .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #9018FE;
}

.faq-2 .faq-content {
  padding: 0 25px 25px 72px;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.7;
  position: relative;
  z-index: 3;
}

/* --- CTA BOX --- */
.faq-2 .faq-cta {
  background: rgba(144, 24, 254, 0.05);
  border: 1px solid rgba(144, 24, 254, 0.2);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-2 .faq-content {
    padding: 0 20px 20px 20px;
  }

  .faq-2 .faq-item .num {
    display: none;
  }
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 {
  padding-top: 100px;
  background-color: #060606;
  position: relative;
  padding-bottom: 100px;
}

/* --- Section Header & Gradient --- */
.contact-4 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-4 .trust-line {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #0FF4E2;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-4 .unseen-gradient {
  background: linear-gradient(135deg, #0FF4E2 10%, #9018FE 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Info Items (Left Column) --- */
.contact-4 .info-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: 0.3s;
}

.contact-4 .info-item:hover {
  border-color: rgba(144, 24, 254, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.contact-4 .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-4 .icon-wrapper i {
  color: #0FF4E2;
  font-size: 24px;
}

.contact-4 .info-item:hover .icon-wrapper {
  background: #0FF4E2;
}

.contact-4 .info-item:hover .icon-wrapper i {
  color: #000;
}

.contact-4 .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.contact-4 .contact-link {
  color: #0FF4E2;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-4 .contact-link:hover {
  color: #9018FE;
}

/* --- Form Styles (Right Column) --- */
.contact-4 .php-email-form {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.contact-4 .form-control {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-4 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-4 .form-control:focus {
  border-color: #0FF4E2;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(15, 244, 226, 0.1);
  outline: none;
}

/* --- Submit Button --- */
.contact-4 button[type=submit] {
  background: linear-gradient(135deg, #0FF4E2 0%, #9018FE 100%);
  color: #000;
  border: none;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 10px;
}

.contact-4 button[type=submit]:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(144, 24, 254, 0.4);
}

/* --- Messaging Response --- */
.contact-4 .php-email-form .loading,
.contact-4 .php-email-form .error-message,
.contact-4 .php-email-form .sent-message {
  display: none;
  /* Controlled by JS */
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-4 .php-email-form .sent-message {
  background: rgba(15, 244, 226, 0.1);
  color: #0FF4E2;
  border: 1px solid #0FF4E2;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-4 .php-email-form {
    padding: 25px;
  }

  .contact-4 h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Badges Section
--------------------------------------------------------------*/
.badges {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #060606;
  z-index: 1;
}

.badges .container {
  position: relative;
  z-index: 2;
  /* Sits above the blobs */
}

/* --- BACKGROUND BLOBS --- */
.badges-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.badges-blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.12;
  border-radius: 50%;
}

.badges-blob-1 {
  top: 10%;
  left: -150px;
  width: 600px;
  height: 600px;
  background: #9018FE;
  /* Purple Glow */
}

.badges-blob-2 {
  bottom: 10%;
  right: -150px;
  width: 600px;
  height: 600px;
  background: #0FF4E2;
  /* Cyan Glow */
}

/* --- GRID & CARDS --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.credential-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.credential-card img {
  max-height: 45px;
  width: auto;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
  /* High-end silhouette look */
  opacity: 0.6;
  transition: 0.4s;
}

.credential-card span {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

/* --- HOVER EFFECTS --- */
.credential-card:hover {
  background: rgba(144, 24, 254, 0.05);
  border-color: rgba(144, 24, 254, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.credential-card:hover img {
  opacity: 1;
  filter: none;
  /* Return logo to original color on hover */
}

.credential-card:hover span {
  color: #fff;
}

/* Mobile responsive columns */
@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--------------------------------------------------------------
# Roofing Section
--------------------------------------------------------------*/
.roofing {
  padding: 100px 0;
  position: relative;
  background-color: #060606;
  overflow: hidden;
}

/* Image & ROI Stacking */
.roofing .image-stack {
  position: relative;
  z-index: 2;
}

.roofing .main-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  filter: brightness(0.75) contrast(1.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.roofing .image-stack:hover .main-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
  border-color: rgba(15, 244, 226, 0.3);
}

/* ROI Info Card */
.roofing .roi-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #0FF4E2;
  padding: 24px;
  border-radius: 20px;
  max-width: 280px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.roofing .roi-badge i {
  font-size: 2rem;
  color: #0FF4E2;
  margin-bottom: 10px;
  display: block;
}

.roofing .roi-badge h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #0FF4E2;
}

.roofing .roi-badge p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Feature List Styling - UPDATED FOR HOVER EFFECT */
.roofing .feature-group {
  margin-top: 35px;
}

.roofing .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.roofing .r-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(144, 24, 254, 0.1);
  border: 1px solid rgba(144, 24, 254, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9018FE;
  font-size: 1.4rem;
  transition: 0.3s ease;
  /* Critical for smooth hover */
}

/* The Hover Effect Trigger */
.roofing .feature-item:hover .r-icon {
  background: rgba(144, 24, 254, 0.2);
  transform: translateY(-3px);
  border-color: rgba(144, 24, 254, 0.5);
}

.roofing .r-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.roofing .r-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .roofing .roi-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0;
    max-width: 100%;
  }

  .roofing .image-stack {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Solar Section
--------------------------------------------------------------*/
.solar {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background-color: #060606;
  z-index: 1;
}

/* Image & Data Overlay */
.solar .image-stack {
  position: relative;
  z-index: 2;
}

.solar .main-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  filter: brightness(0.75) contrast(1.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solar .image-stack:hover .main-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
  border-color: rgba(144, 24, 254, 0.3);
}

/* Efficiency Stats Card */
.solar .stats-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #9018FE;
  padding: 24px;
  border-radius: 20px;
  max-width: 260px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.solar .stats-card i {
  font-size: 2rem;
  color: #9018FE;
  margin-bottom: 10px;
  display: block;
}

.solar .stats-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #9018FE;
}

.solar .stats-card .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: block;
}

/* Feature List Styling - UPDATED FOR HOVER EFFECT */
.solar .feature-group {
  margin-top: 35px;
}

.solar .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.solar .sl-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border: 1px solid rgba(15, 244, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0FF4E2;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

/* Hover effect to match reference section */
.solar .feature-item:hover .sl-icon {
  background: rgba(15, 244, 226, 0.2);
  transform: translateY(-3px);
  border-color: rgba(15, 244, 226, 0.5);
}

.solar .sl-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.solar .sl-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .solar .stats-card {
    position: relative;
    top: 0;
    left: 0;
    margin: 20px auto 0;
    max-width: 100%;
    text-align: center;
  }

  .solar .stats-card i {
    margin: 0 auto 10px;
  }

  .solar .image-stack {
    text-align: center;
  }
}

/* --- BLOBS --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.18;
  border-radius: 50%;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: #9018FE;
}

.blob-2 {
  bottom: 10%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #0FF4E2;
}

/*--------------------------------------------------------------
# Construction Section
--------------------------------------------------------------*/
.construction {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

.image-wrapper-construction {
  position: relative;
  display: inline-block;
  width: 100%;
}

.construction .main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  /* Matches previous sections */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Premium Feel Adjustments */
  filter: brightness(0.75) contrast(1.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect */
.image-wrapper-construction:hover .main-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
  border-color: rgba(204, 255, 0, 0.3);
  /* Safety yellow glow for construction */
}

.construction .blueprint-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #0FF4E2;
  padding: 10px 15px;
  border-radius: 8px;
  color: #0FF4E2;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  z-index: 5;
  letter-spacing: 0.5px;
}

/* Feature Item Alignment Fix */
.construction .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.construction .feature-item i {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccff00;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.1);
  transition: 0.3s ease;
}

.construction .feature-item:hover i {
  background: rgba(204, 255, 0, 0.2);
  transform: scale(1.05);
}

.construction .feature-text h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.construction .feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Desktop spacing */
.construction .col-lg-6:first-child {
  padding-right: 40px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .construction .section-header {
    text-align: center !important;
  }

  .construction .col-lg-6:first-child {
    padding-right: var(--bs-gutter-x);
  }

  .construction .blueprint-label {
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    text-align: center;
    bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Agriculture Section
--------------------------------------------------------------*/
.agriculture {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background-color: #060606;
  z-index: 1;
}

/* Localized Background Glow */
.ag-glow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(144, 24, 254, 0.12) 0%, rgba(6, 6, 6, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* Image Wrapper */
.ag-image-container {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.ag-main-img {
  width: 100%;
  height: auto;
  display: block;
  /* Premium Style: Darker shadows and punchier heat colors */
  filter: brightness(0.75) contrast(1.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ag-image-container:hover .ag-main-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.03);
}

/* Heat Signature Label with red-accented styling */
.ag-heat-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 59, 59, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ff3b3b;
  padding: 8px 16px;
  border-radius: 50px;
  color: #ff3b3b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.ag-pulse-dot {
  width: 7px;
  height: 7px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: ag-blink 1.5s infinite;
  box-shadow: 0 0 8px #ff3b3b;
}

@keyframes ag-blink {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Feature Grid Alignment */
.ag-feature-list {
  margin-top: 30px;
}

.ag-feature-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  margin-bottom: 35px;
  align-items: start;
}

.ag-icon {
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border: 1px solid rgba(15, 244, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0FF4E2;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.ag-feature-item:hover .ag-icon {
  background: rgba(15, 244, 226, 0.2);
  transform: translateY(-3px);
}

.ag-text h5 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ag-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .agriculture-section {
    padding: 60px 0;
  }

  .ag-feature-item {
    text-align: left;
  }

  .ag-image-container {
    margin-top: 20px;
  }

  .ag-heat-label {
    right: 50%;
    transform: translateX(50%);
    width: fit-content;
  }
}

/* --- BLOBS --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.18;
  border-radius: 50%;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: #9018FE;
}

.blob-2 {
  bottom: 10%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #0FF4E2;
}

/*--------------------------------------------------------------
# Data Reports Section
--------------------------------------------------------------*/
.data-reports {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.report-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(144, 24, 254, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Center) Highlight */
.report-card.featured {
  border-color: rgba(15, 244, 226, 0.3);
  background: linear-gradient(180deg, rgba(15, 244, 226, 0.03) 0%, rgba(6, 6, 6, 0) 100%);
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.report-icon {
  width: 50px;
  height: 50px;
  background: rgba(144, 24, 254, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9018FE;
  font-size: 1.5rem;
}

.featured .report-icon {
  background: rgba(15, 244, 226, 0.1);
  color: #0FF4E2;
}

.report-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.report-card h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.report-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Feature Bullet Points inside cards */
.report-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
  /* Pushes to bottom of card */
}

.report-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-features li i {
  color: #0FF4E2;
  font-size: 1rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .reports-section {
    padding: 60px 0;
  }

  .report-card {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Faq Ag Section
--------------------------------------------------------------*/
.faq-ag {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.faq-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 244, 226, 0.07) 0%, rgba(6, 6, 6, 0) 70%);
  bottom: -10%;
  right: -10%;
  filter: blur(100px);
  z-index: 1;
}

/* Accordion Custom Styling */
.faq-section .accordion-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-section .accordion-button {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  padding: 25px;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* High Contrast for the active question */
.faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(15, 244, 226, 0.05);
  color: #0FF4E2;
}

/* Icon Color (The Arrow) */
.faq-section .accordion-button::after {
  filter: invert(1);
  /* Makes the arrow white */
}

/* Body / Answer Text */
.faq-section .accordion-body {
  padding: 0 25px 25px 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .accordion-button {
    padding: 20px;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Commercial Cta Section
--------------------------------------------------------------*/
.commercial-cta {
  padding: 60px 0 100px;
  background-color: #060606;
}

.commercial-cta .cta-box {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Subtle Lime glow using brand #DBFF16 */
.commercial-cta .cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(219, 255, 22, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.commercial-cta h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.commercial-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}

/* Button using Brand Lime #DBFF16 */
.commercial-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #DBFF16;
  color: #060606;
  /* Dark text for contrast on bright lime */
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(219, 255, 22, 0.2);
}

.commercial-cta .btn-cta i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.commercial-cta .btn-cta:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

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

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .commercial-cta {
    text-align: center;
    padding: 40px 0 80px;
  }

  .commercial-cta .cta-box {
    padding: 40px 30px;
  }

  .commercial-cta h3 {
    font-size: 1.6rem;
  }

  .commercial-cta .btn-cta {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Storm Section
--------------------------------------------------------------*/
.storm {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background-color: #060606;
  padding-bottom: 80px;
}

/* Image Styling */
.storm .image-stack {
  position: relative;
  z-index: 2;
}

.storm .main-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  filter: brightness(0.75) contrast(1.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.storm .image-stack:hover .main-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
  border-color: rgba(15, 244, 226, 0.3);
}

/* Insurance Claim Badge */
.storm .claim-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #0FF4E2;
  padding: 24px;
  border-radius: 20px;
  max-width: 280px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.storm .claim-badge i {
  font-size: 2rem;
  color: #0FF4E2;
  margin-bottom: 10px;
  display: block;
}

.storm .claim-badge h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #0FF4E2;
}

.storm .claim-badge p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Feature List Styling */
.storm .feature-group {
  margin-top: 35px;
}

.storm .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.storm .st-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border: 1px solid rgba(15, 244, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0FF4E2;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.storm .feature-item:hover .st-icon {
  background: rgba(15, 244, 226, 0.2);
  transform: translateY(-3px);
  border-color: rgba(15, 244, 226, 0.5);
}

.storm .feature-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.storm .feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .storm .claim-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 20px auto 0;
    max-width: 100%;
    text-align: center;
    /* Center content for mobile */
  }

  .storm .claim-badge i {
    margin: 0 auto 10px;
  }

  .storm .image-stack {
    text-align: center;
    margin-top: 20px;
    /* Space between text and image stack */
  }
}

/*--------------------------------------------------------------
# Energy Section
--------------------------------------------------------------*/
.energy {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

/* Image Styling with Premium Filter */
.energy-audit .image-stack {
  position: relative;
  z-index: 2;
}

.energy-audit .main-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  filter: brightness(0.8) contrast(1.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.energy-audit .image-stack:hover .main-img {
  filter: brightness(0.95) contrast(1.1);
  transform: scale(1.02);
  border-color: rgba(144, 24, 254, 0.4);
}

/* Savings Card */
.energy-audit .savings-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #9018FE;
  padding: 24px;
  border-radius: 20px;
  max-width: 260px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.energy-audit .savings-card i {
  font-size: 2rem;
  color: #9018FE;
  margin-bottom: 10px;
  display: block;
}

.energy-audit .savings-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #9018FE;
}

.energy-audit .savings-card .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.energy-audit .savings-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* Feature List - UPDATED FOR HOVER EFFECT */
.energy-audit .feature-group {
  margin-top: 35px;
}

.energy-audit .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.energy-audit .e-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(144, 24, 254, 0.1);
  border: 1px solid rgba(144, 24, 254, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9018FE;
  font-size: 1.4rem;
  transition: 0.3s ease;
  /* Smooth transition for the lift */
}

/* The Hover Effect Trigger */
.energy-audit .feature-item:hover .e-icon {
  background: rgba(144, 24, 254, 0.2);
  transform: translateY(-3px);
  border-color: rgba(144, 24, 254, 0.5);
}

.energy-audit .feature-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.energy-audit .feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .energy-audit .savings-card {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px auto 0;
    max-width: 100%;
    text-align: center;
  }

  .energy-audit .savings-card i {
    margin: 0 auto 10px;
  }

  .energy-audit .image-stack {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Security Section
--------------------------------------------------------------*/
.security {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

/* Tactical HUD Styling */
.security-display {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 244, 226, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.security-img {
  width: 100%;
  height: auto;
  display: block;
  /* Premium Filter: Makes it look technical and high-contrast */
  filter: brightness(0.7) contrast(1.2) saturate(0.8);
  transition: all 0.5s ease;
}

.security-display:hover .security-img {
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
}

/* HUD Overlay Elements */
.hud-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(15, 244, 226, 0.4);
  box-shadow: 0 0 15px #0FF4E2;
  z-index: 3;
  animation: scan-vertical 4s linear infinite;
  pointer-events: none;
}

@keyframes scan-vertical {
  0% {
    top: -2%;
  }

  100% {
    top: 102%;
  }
}

.hud-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #0FF4E2;
  z-index: 4;
  opacity: 0.6;
}

.tl {
  top: 15px;
  left: 15px;
  border-right: 0;
  border-bottom: 0;
}

.tr {
  top: 15px;
  right: 15px;
  border-left: 0;
  border-bottom: 0;
}

.bl {
  bottom: 15px;
  left: 15px;
  border-right: 0;
  border-top: 0;
}

.br {
  bottom: 15px;
  right: 15px;
  border-left: 0;
  border-top: 0;
}

.status-indicator {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.8);
  color: #0FF4E2;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 5;
  border: 1px solid rgba(15, 244, 226, 0.3);
}

.status-indicator .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff3b3b;
  border-radius: 50%;
  margin-right: 8px;
  animation: hud-blink 1.2s infinite;
  box-shadow: 0 0 8px #ff3b3b;
}

@keyframes hud-blink {
  50% {
    opacity: 0.2;
  }
}

/* Feature List Styling */
.security-features {
  margin-top: 35px;
}

.s-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.s-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border: 1px solid rgba(15, 244, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0FF4E2;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.s-feature:hover .s-icon {
  background: rgba(15, 244, 226, 0.2);
  transform: translateY(-3px);
}

.s-text h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.s-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .security-display {
    max-width: 500px;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Livestock Pets Section
--------------------------------------------------------------*/
.livestock-pets {
  padding: 100px 0;
  background-color: #060606;
  position: relative;
  overflow: hidden;
}

/* Image Wrapper with fixed aspect ratio behavior */
.pet-image-container {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pet-main-img {
  width: 100%;
  height: auto;
  display: block;
  /* Premium Feel: Makes the thermal signature pop */
  filter: brightness(0.8) contrast(1.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pet-image-container:hover .pet-main-img {
  filter: brightness(0.95) contrast(1.1);
  transform: scale(1.03);
  border-color: rgba(144, 24, 254, 0.4);
  /* Purple glow on hover */
}

/* Thermal Label */
.pet-thermal-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(144, 24, 254, 0.2);
  /* Purple for thermal detection */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #9018FE;
  padding: 8px 16px;
  border-radius: 50px;
  color: #9018FE;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.pet-pulse-dot {
  width: 7px;
  height: 7px;
  background: #ff3b3b;
  /* Red for "heat" */
  border-radius: 50%;
  animation: pet-blink 1.5s infinite;
  box-shadow: 0 0 8px #ff3b3b;
}

@keyframes pet-blink {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Feature Grid Styling */
.pet-feature-list {
  margin-top: 30px;
}

.pet-feature-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  margin-bottom: 35px;
  align-items: start;
}

.pet-icon {
  width: 50px;
  height: 50px;
  background: rgba(144, 24, 254, 0.1);
  /* Purple for thermal */
  border: 1px solid rgba(144, 24, 254, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9018FE;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.pet-feature-item:hover .pet-icon {
  background: rgba(144, 24, 254, 0.2);
  transform: translateY(-3px);
}

.pet-text h5 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pet-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .livestock-pets {
    padding: 60px 0;
  }

  .pet-thermal-label {
    right: 50%;
    transform: translateX(50%);
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Res Cta Section
--------------------------------------------------------------*/
.res-cta {
  padding: 60px 0 100px;
  background-color: #060606;
}

.residential-cta .cta-box {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Subtle cyan glow effect to match the residential accents */
.residential-cta .cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(15, 244, 226, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.residential-cta h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.residential-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0;
}

.residential-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #0FF4E2;
  color: #060606;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(15, 244, 226, 0.2);
}

.residential-cta .btn-cta i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.residential-cta .btn-cta:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

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

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .residential-cta {
    text-align: center;
    padding: 40px 0 80px;
  }

  .residential-cta .cta-box {
    padding: 40px 30px;
  }

  .residential-cta h3 {
    font-size: 1.6rem;
  }

  .residential-cta .btn-cta {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
  padding-top: 84px;
  position: relative;
  overflow: hidden;
  background-color: #060606;
  z-index: 1;
  padding-bottom: 80px;
}

/* Constraining the Image Size */
.about-image-wrapper {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.about-profile-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: grayscale(20%) contrast(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
.about-subtitle {
  color: #0FF4E2;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-text-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 10px;
}

.about-text-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Minimal Signature */
.about-signature {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-signature .name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #fff;
}

.about-signature .title {
  color: #0FF4E2;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Mobile Alignment Adjustments */
@media (max-width: 991px) {
  .about-text-content {
    text-align: center;
    margin-bottom: 20px;
    /* Space between text and image below */
  }

  .about-signature {
    display: inline-block;
    text-align: left;
  }

  .about-image-wrapper {
    margin-top: 30px;
    /* Extra space when image follows text */
  }
}

/* --- BLOBS --- */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.18;
  border-radius: 50%;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: #9018FE;
}

.blob-2 {
  bottom: 10%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #0FF4E2;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: #060606;
  padding: 100px 0;
  position: relative;
}

.contact-4 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-4 .trust-line {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #0FF4E2;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-4 .unseen-gradient {
  background: linear-gradient(135deg, #0FF4E2 10%, #9018FE 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.contact-4 .info-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: 0.3s;
}

.contact-4 .info-item:hover {
  border-color: rgba(144, 24, 254, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.contact-4 .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(15, 244, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-4 .icon-wrapper i {
  color: #0FF4E2;
  font-size: 24px;
}

.contact-4 .info-item:hover .icon-wrapper {
  background: #0FF4E2;
}

.contact-4 .info-item:hover .icon-wrapper i {
  color: #000;
}

.contact-4 .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.contact-4 .contact-link {
  color: #0FF4E2;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-4 .contact-link:hover {
  color: #9018FE;
}

.contact-4 .php-email-form {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.contact-4 .form-control {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-4 .form-control:focus {
  border-color: #0FF4E2;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(15, 244, 226, 0.1);
  outline: none;
}

.contact-4 button[type=submit] {
  background: linear-gradient(135deg, #0FF4E2 0%, #9018FE 100%);
  color: #000;
  border: none;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 10px;
}

.contact-4 button[type=submit]:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(144, 24, 254, 0.4);
}

.contact-4 .php-email-form .loading,
.contact-4 .php-email-form .error-message,
.contact-4 .php-email-form .sent-message {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-4 .php-email-form .sent-message {
  background: rgba(15, 244, 226, 0.1);
  color: #0FF4E2;
  border: 1px solid #0FF4E2;
}

@media (max-width: 768px) {
  .contact-4 .php-email-form {
    padding: 25px;
  }

  .contact-4 h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}