:root {
  --default-font: "Open Sans",  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: "Manrope",  sans-serif;
  --nav-font: "Manrope",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #32353a;
  --accent-color: #026d93;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --brand-primary-dark: #02607f;
  --brand-primary-hover: #1187b1;
  --brand-primary-hover-border: #0e769b;
  --brand-danger: #ce1527;
  --brand-warning: #ffba00;
  --brand-warning-border: #d9a10b;
  --brand-warning-hover: #e0a800;
  --brand-warning-hover-border: #c89407;

  --text-strong: #18354d;
  --text-muted: #5f7184;
  --text-body-dark: #1f2d3a;
  --text-medium: #444;
  --text-link-muted: #449;
  --text-subtle-accent: #848;

  --border-soft: #c7d3df;
  --border-light: #ddd;
  --surface-muted: #fafafa;

  --footer-bg: linear-gradient(180deg, #f6fbfd 0%, #eef8fb 52%, #ffffff 100%);
  --footer-border: rgba(2, 109, 147, 0.12);
  --footer-icon-border: rgba(2, 109, 147, 0.18);
  --footer-icon-bg: rgba(255, 255, 255, 0.88);
  --footer-card-bg: rgba(255, 255, 255, 0.86);
  --footer-meta-border: rgba(2, 109, 147, 0.14);

  --shadow-brand-sm: 0 10px 24px rgba(2, 109, 147, 0.18);
  --shadow-brand-sm-hover: 0 14px 28px rgba(2, 109, 147, 0.24);
  --shadow-footer-icon: 0 10px 24px rgba(2, 109, 147, 0.08);
  --shadow-footer-card: 0 18px 40px rgba(2, 109, 147, 0.08);
  --shadow-panel: 0 18px 45px rgba(19, 44, 68, 0.08);
}


:root {
  --nav-color: #3a3939;
  --nav-hover-color: var(--accent-color);
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--accent-color);
}


/* 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: #f9f9f9;
  --surface-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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: #111;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 10px 22px;
  margin: 0;
  border: 3px solid #222;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #000;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(243, 215, 79, 0.9);
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 400px) {
  .header .btn-getstarted {
    padding: 6px 10px;
    font-size: 0.78rem;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #3a3939; /* in order to be visible in home top */
  --nav-hover-color: var(--accent-color);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu ul,
.navmenu ul li {
  list-style: none;
  padding-left: 0;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 5px 8px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 999px;
    box-shadow: none;
    transition: color 0.25s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }

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

  .navmenu li:hover>a:not(.active) {
    color: #18354d;
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.32);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #111;
    background-color: #f3d74f;
    border: 2px solid #222;
    border-radius: 999px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: opacity 0.2s ease, top 0.2s ease;
    border: 2px solid #222;
    border-radius: 20px;
    z-index: 99;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
    min-width: 220px;
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
    color: #111;
    border-radius: 12px;
    transition: background-color 0.15s ease;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: #f3d74f;
    color: #111;
    box-shadow: none;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 96px);
    padding: 12px 8px;
    margin: 0;
    border: 3px solid #222;
    border-radius: 24px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
  }

  .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: color 0.25s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .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:not(.active) {
    color: #111;
    background: #f0f0f0;
    border-radius: 14px;
    box-shadow: none;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #111;
    background: #f3d74f;
    border: 2px solid #222;
    border-radius: 14px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    list-style: none;
    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);
  }

  .navmenu .dropdown > a.dd-open .bi-chevron-down {
    transform: rotate(180deg);
  }

  .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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--footer-bg);
  font-size: 14px;
  padding-top: 24px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--footer-border);
}

.footer .footer-top {
  padding-top: 28px;
  padding-bottom: 24px;
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact {
  position: relative;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.social-links {
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 0;
  border-radius: 50%;
  border: 1px solid var(--footer-icon-border);
  font-size: 16px;
  color: var(--accent-color);
  background: var(--footer-icon-bg);
  box-shadow: var(--shadow-footer-icon);
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links h4,
.footer .footer-contact h4 {
  margin-bottom: 10px;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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: var(--text-body-dark);
  display: inline-block;
  font-weight: 600;
  line-height: 1.45;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer-contact-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-border);
  box-shadow: var(--shadow-footer-card);
}

.footer-contact-card p:last-of-type,
.footer .footer-meta p {
  margin-bottom: 0;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-weight: 700;
}

.contact-page-card h3 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-page-card p {
  margin-bottom: 5px;
}

.footer .footer-bottom {
  padding-top: 4px;
  padding-bottom: 24px;
}

.footer .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--footer-meta-border);
  color: rgba(31, 45, 58, 0.82);
  font-size: 0.96rem;
}

.footer .footer-skyline {
  width: 100vw;
  max-width: 100vw;
  margin: 12px calc(50% - 50vw) 0;
  overflow: hidden;
  line-height: 0;
  text-align: center;
}

.footer .footer-skyline-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 340px;
  margin: 0 auto;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 90px;
  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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0;
  color: var(--heading-color);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.section-title h2:before {
  display: none;
}

.section-title h2:after {
  display: none;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Make all hero text black */
.hero,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p,
.hero a,
.hero form,
.hero input,
.hero label,
.hero span {
  color: #000 !important;
}


.hero {
  width: 100%;
  /*min-height: 100vh;*/
  min-height: 800px;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/*
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
*/
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--surface-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}





/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}


/*==============================================================
# Biznes Custom Overrides
==============================================================*/

.form-check-input-cfsearch {
  width: 0;
  height: 0;
  margin: 0;
}

.form-check-input-cfsearch:checked + .form-check-label-cfsearch {
  background-color: #0d6efd;
  color: #fff;
}

.form-check-cfsearch {
  width: 100%;
  max-width: 285px;
  margin: 0 0 6px 0;
}

.head_sector {
  background: #f0f0f0;
  padding-top: 40px;
  padding-bottom: 0;
}

.btn_general {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  border: 1px solid var(--brand-primary-dark);
  border-radius: 10px;
  background-color: var(--accent-color);
  box-shadow: var(--shadow-brand-sm);
  padding: 12px 22px;
  transition: filter 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn_general:hover {
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover-border);
  box-shadow: var(--shadow-brand-sm-hover);
  transform: translateY(-1px);
  color: #fff !important;
}

.btn_yellow {
  background-color: var(--brand-warning);
  color: #333;
  border-color: var(--brand-warning-border);
  box-shadow: 0 10px 24px rgba(217, 161, 11, 0.18);
}

.btn_yellow:hover {
  background-color: var(--brand-warning-hover);
  border-color: var(--brand-warning-hover-border);
  box-shadow: 0 14px 28px rgba(217, 161, 11, 0.24);
  color: #333 !important;
}

.cf_res_item_header,
.cf_res_id {
  font-size: 1.2em;
}

.cf_res_wl {
  font-size: 1.4em;
  text-align: right;
}

/* cf_res base + modifier pairs */
.cf_res_cat,
.cf_res_cat_home {
  font-weight: 700;
}

.cf_res_cat {
  font-size: 1.35em;
}

.cf_res_cat_home {
  font-size: 1em;
}

.cf_res_time,
.cf_res_time_home {
  font-size: 1.2em;
  color: var(--text-subtle-accent);
  padding-right: 5px;
}

.cf_res_time {
  text-align: right;
}

.cf_res_text,
.cf_res_text_home {
  color: #000;
}

.cf_res_text {
  font-size: 1.3em;
  padding: 5px;
}

.cf_res_text_home {
  font-size: 1.1em;
  height: 100px;
  margin-top: 5px;
  padding-left: 5px;
}

.cf_res_address,
.cf_res_address_home {
  font-size: 1.2em;
  color: var(--text-medium);
}

.cf_res_address_home,
.cf_res_tel {
  padding-left: 5px;
}

.cf_res_tel,
.cf_res_email {
  font-size: 1.2em;
  color: var(--text-link-muted);
}

.cf_res_email {
  text-align: right;
  padding-right: 5px;
}

.member_cf_star {
  color: var(--brand-warning);
  font-size: 1em;
}

.wl_control {
  font-size: 1em;
  padding: 6px;
  display: inline-block;
}

.wl_control_disabled {
  font-size: 1em;
  color: #444466;
}

.wl_watch {
  color: #db8600;
}

.wl_read {
  color: #27ae60;
}

.wl_exclude {
  color: #bb0000;
}

.form-group input[type="checkbox"] {
  display: none;
}

.form-group input[type="checkbox"] + .btn-group > label span {
  width: 20px;
}

.form-group input[type="checkbox"] + .btn-group > label span:first-child,
.form-group input[type="checkbox"]:checked + .btn-group > label span:last-child {
  display: none;
}

.form-group input[type="checkbox"] + .btn-group > label span:last-child,
.form-group input[type="checkbox"]:checked + .btn-group > label span:first-child {
  display: inline-block;
}

.cf_res_contact {
  text-align: right;
}

@media (max-width: 767px) {
  .cf_res_time {
    text-align: left;
  }
  .cf_res_contact {
    text-align: left;
  }
  .cf_res_email {
    text-align: left;
    padding-right: 0;
    padding-left: 5px;
  }
}


.biznes-forms .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.biznes-forms .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.biznes-forms .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.biznes-forms .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.biznes-forms .contact-form {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-panel);
  padding: 34px;
  height: 100%;
}

.auth-login-section .contact-wrap {
  row-gap: 24px;
}

.auth-login-section .contact-form,
.classif-report-section .contact-form {
  height: auto;
}

.biznes-forms .contact-form input[type=text],
.biznes-forms .contact-form input[type=email],
.biznes-forms .contact-form input[type=tel],
.biznes-forms .contact-form textarea,
.biznes-forms .contact-form select {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 16px;
  box-shadow: none;
  border-radius: 10px;
  color: var(--text-strong);
  background-color: #ffffff;
  border: 1px solid #8ea1b5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.biznes-forms .contact-form input[type=text]:focus,
.biznes-forms .contact-form input[type=email]:focus,
.biznes-forms .contact-form input[type=tel]:focus,
.biznes-forms .contact-form textarea:focus,
.biznes-forms .contact-form select:focus {
  border-color: var(--accent-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 109, 147, 0.14);
}

.biznes-forms .contact-form input[type=text]::placeholder,
.biznes-forms .contact-form input[type=email]::placeholder,
.biznes-forms .contact-form input[type=tel]::placeholder,
.biznes-forms .contact-form textarea::placeholder {
  color: #66788b;
}

.biznes-forms .contact-form .form-label {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-strong);
}

.biznes-forms .contact-form small,
.biznes-forms .contact-form h6,
.biznes-forms .contact-form #mobile_valid_msg,
.biznes-forms .contact-form #inline-error {
  color: var(--text-muted);
}

.biznes-forms .contact-form .form-check {
  margin-bottom: 0.7rem;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #ffffff;
}

.biznes-forms .contact-form .form-check-input {
  margin-top: 0.25rem;
}

.biznes-forms .contact-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.biznes-forms .contact-form .form-check-label,
.biznes-forms .contact-form h3,
.classif-report-meta strong {
  color: var(--text-strong);
  font-weight: 700;
}

.biznes-forms .contact-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.biznes-forms .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.biznes-forms .contact-form .loading,
.biznes-forms .contact-form .error-message,
.biznes-forms .contact-form .sent-message {
  display: none;
}

.classif-report-card {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 20px;
}

.classif-report-intro {
  margin-bottom: 1rem;
  color: var(--text-strong);
  font-weight: 600;
}

.classif-report-meta {
  display: grid;
  gap: 14px;
  margin-bottom: 1rem;
}

.classif-report-meta span,
.classif-report-text span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.classif-report-text {
  color: var(--text-strong);
}

@media (max-width: 991.98px) {
  .footer .footer-top {
    padding-top: 24px;
  }

  .footer .footer-contact {
    text-align: left !important;
  }

  .footer .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-top {
    padding-bottom: 12px;
  }

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact {
    text-align: left;
  }

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

  .footer-contact-card {
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .footer .footer-bottom {
    padding-bottom: 18px;
  }

  .footer .footer-skyline {
    margin-top: 8px;
  }

  .biznes-forms .contact-form {
    padding: 24px 18px;
    border-radius: 12px;
  }
}
