:root {
  --brand-primary-color: #2b7471;
  --brand-primary-light-color: #2B74711A;
  --brand-secondary-color: #D6E9E8;
  --p-text-color: #4B5563;
  --brand-60: #80acaa;
  --brand-30: #f2f9f9;
  --white: #ffffff;
  --black: #000000;
  --red: #ff0000;
  --radius: 14px;

  --term-p-text-color: #6B7280;
  --pricing-card-text-color: #848199;

  --error-input-bg: #ffe7e8;
  --pricing-steps-bg: #F9FAFB;

  --header-border-color: #EAEAEA;
  --footer-border-color: #e0e0e0;
  ;
  --box-shadow-color: #0000001A;
  --pricing-steps-button-box-shadow: #5243C23B;
  --order-summary-border-color: #E5E7EB;
  
  
  --border-bottom-color: #CDCDCD;
  --icon-bg-color: #FFFFFF33;
  --section-bg-gradient-color-32: #1A5D5B;
  --section-bg-gradient-color-99: #369390;
  
  --header-box-shadow-color:rgba(0, 0, 0, 0.1);
  --pricing-card-border-color: rgba(43, 116, 113, 0.06);
  --pricing-card-box-shadow: rgba(0, 0, 0, 0.05);
  --pricing-box-shadow: rgba(43, 116, 113, 0.35);
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  font-family: Roboto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--white);
    display: flex;
    flex-direction: column;
}
body > .container {
    margin-bottom: auto !important;
}
.error {
  background: var(--error-input-bg);
  border: 1px solid var(--red) !important;
  border-radius: 10px !important;

}


.blk-CONT ul li input[type=text].active {
  border-bottom: 2px solid var(--brand-primary-color);
}

.blk-CONT ul li textarea.active {
  border-color: none;
  outline: none;
  border: 2px solid var(--brand-primary-color);

}

.blk-CONT ul li label.active {
  color: var(--brand-primary-color);
  ;
}

form[name="form-RENTCUSTREG"] ul li input[type=text].active {
  border-bottom: 2px solid var(--brand-primary-color);
}
form[name="form-RENTCUSTREG"] ul li label.active {
  color: var(--brand-primary-color);
  font-weight: 600;
  ;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* full viewport height */
}

.content {
  flex: 1;
  /* take all remaining space so footer stays at bottom */
}

header .hamburger {
  display: none;
}

/* Header */
.rentHheader {
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    background: var(--white);
    border-bottom: 1px solid var(--header-border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 9;
    height: 75px !important;
}

.rentHheader .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 75px;
}

.sticky {
  position: fixed;
  top: -100px;
  /* Start hidden above */
  left: 0;
  width: 100%;
  background-color: var(--white);
  /* padding: 0 1rem;*/
  height: 75px;
  z-index: 50;
  box-shadow: 0 2px 6px var(--header-box-shadow-color);
  transform: translateY(100px);
  /* Slide down */
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Logo */
.logo img {
  width: 200px;
  /*height: 135px;*/
  margin-right: 8px;
}

/* Navigation */
.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--p-text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  width: 100%;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--brand-primary-color);
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-buttons .login,
.auth-buttons .signup {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--brand-primary-color);
    padding: 8px 15px 8px 15px;
    transition: all 0.5s ease;
}



.auth-buttons .login:hover {
  color: var(--white);
  background: var(--brand-primary-color);
  border-radius: 8px;
}

.auth-buttons .signup:hover {
  color: var(--white);
  background: rgba( var(--brand-primary-color), 0.85 ); 
  transform: translateY(-2px);
}

/* Responsive */
@media only screen and (min-width: 0) and (max-width: 500px) {
  .nav ul {
    display: none;
    /* Hide menu for mobile, you can replace with hamburger */
  }

  .auth-buttons {
    display: none;
  }

  header .hamburger {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 30px;
  }

  .nav {
    padding-right: 20px;
    width: 100%;
    background: var(--white);
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px var(--header-box-shadow-color);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    /* makes it unclickable while hidden */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav ul {
    display: flex;
    list-style: none;
    gap: 0px;
    flex-direction: column;
    padding: 0px;
  }

  .auth-buttons {
    display: none;
  }

  header .hamburger {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 30px;
  }

  .nav ul li {
    padding: 10px;
    border-bottom: 1px solid var(--brand-primary-light-color);
    display: block !important;
  }

  .nav ul li:hover {
    background: var(--brand-primary-light-color);
  }
}

@media only screen and (min-width: 501px) and (max-width: 800px) {
  .nav {
    padding-right: 20px;
    width: 100%;
    background: var(--white);
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px var(--header-box-shadow-color);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    /* makes it unclickable while hidden */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav ul {
    display: flex;
    list-style: none;
    gap: 0px;
    flex-direction: column;
    padding: 0px;
  }

  .auth-buttons {
    display: none;
  }

  header .hamburger {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 30px;
  }

  .nav ul li {
    padding: 10px;
    border-bottom: 1px solid var(--brand-primary-light-color);
    display: block !important;
  }

  .nav ul li:hover {
    background: var(--brand-primary-light-color);
  }
}

@media only screen and (min-width: 801px) and (max-width:1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {}

@media only screen and (min-width: 1281px) and (max-width: 1419px) {}

@media only screen and (min-width: 1420px) and (max-width: 1579px) {}