/* =====================================================
   PRICING PAGE - MODERN RESPONSIVE CSS
   ===================================================== */

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pricing-page {
  background-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Hero Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 586px;
  background: linear-gradient(180deg, rgba(237, 223, 223, 1) 0%, rgba(224, 249, 255, 1) 100%);
  z-index: 0;
}

/* =====================================================
   NAVBAR STYLES - Identical to index.html
   ===================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  margin: 30px 135px 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 114px;
  box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: relative;
  z-index: 100;
}

.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fdb21a;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown .down-arrow {
  width: 8px;
  height: 5px;
}

.nav-dropdown .dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding-top: 0px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: none;
  min-width: 200px;
  z-index: 1000;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown .dropdown-menu a {
  background-color: #ffffff;
  padding: 12px 20px;
  color: #212121;
  text-decoration: none;
  font-family: "Poppins", Helvetica;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown .dropdown-menu a:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 15px;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown .dropdown-menu a:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-bottom: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown .dropdown-menu a:not(:first-child):not(:last-child) {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  display: flex !important;
}

.nav-dropdown .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #fdb21a;
  border-left-color: #fdb21a;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background-color: #fdb21a;
  border-radius: 70px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #004aad;
}

.nav-cta:hover .nav-cta-text {
  color: #ffffff;
}

.nav-cta:hover .nav-cta-arrow {
  filter: brightness(0) invert(1);
}

.nav-cta-text {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-cta-arrow {
  width: 14px;
  height: 13px;
  filter: brightness(0);
  transition: filter 0.3s ease;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #212121;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
  position: relative;
  z-index: 1;
  padding: 160px 135px 40px;
}

.breadcrumb {
  opacity: 0.5;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 20px;
  margin-bottom: 42px;
}

.page-title {
  font-family: "Neue Haas Grotesk Text Pro-Regular", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.2;
  width: clamp(300px, 45%, 700px);
}

.page-title .highlight {
  color: #e8107c;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
  position: relative;
  z-index: 1;
  /* padding: 60px 135px 100px; */
  display: flex;
  justify-content: space-around;
  margin: 11% 0 5% 0;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 35px;
  position: relative;
  overflow: visible;
}

.basic-card {
  background-color: #f1f1f1;
}

.premier-card {
  background-color: #004aad;
}

.popular-badge {
  position: absolute;
  top: 42px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.7), 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
}

.popular-badge img {
  width: 16px;
  height: 20px;
}

.popular-badge span {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: #1a1a1a;
  font-size: 16px;
}

.card-header {
  padding: 50px 50px 30px;
}

.plan-name {
  font-family: "Neue Haas Grotesk Text Pro-55Rg", Helvetica;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
}

.basic-card .plan-name {
  color: #212121;
}

.premier-card .plan-name {
  color: #ffffff;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 30px;
}

.price {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  font-size: 65px;
}

.basic-card .price {
  color: #212121;
}

.premier-card .price {
  color: #ffffff;
}

.period {
  font-family: "Neue Haas Grotesk Text Pro-55Rg", Helvetica;
  font-weight: 400;
  font-size: 24px;
  opacity: 0.6;
}

.basic-card .period {
  color: #212121;
}

.premier-card .period {
  color: #ffffff;
}

.select-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 31px 15px;
  border: none;
  border-radius: 70px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.basic-btn {
  background-color: #004aad;
}

.basic-btn span {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
}

.basic-btn img {
  width: 22px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.premier-btn {
  background-color: #ffffff;
}

.premier-btn span {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 24px;
}

.premier-btn img {
  width: 22px;
  height: 18px;
}

.card-features {
  margin: 0 20px 20px;
  padding: 35px 30px;
  border-radius: 25px;
}

.basic-card .card-features {
  background-color: #e7e7e7;
}

.premier-card .card-features {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.7), 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.features-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.features-list li span {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: #1a1a1a;
  font-size: 24px;
  line-height: 30px;
}

.features-list li.disabled span {
  opacity: 0.5;
}

/* Decorative Image */
.decorative-img {
  position: absolute;
  top: clamp(60px, 6vw, 92px);
  right: clamp(12px, 20vw, 250px);
  width: clamp(250px, 25vw, 378px);
  height: auto;
  z-index: 2;
}

/* =====================================================
   FOOTER SECTION - Identical to index.html
   ===================================================== */
.footer-section {
  position: relative;
  width: 100%;
  height: 820px;
}

.group-8 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 820px;
  background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/rectangle-17.png);
  background-size: 100% 100%;
}

.rectangle-10 {
  position: absolute;
  top: 647px;
  left: 0;
  width: 100%;
  height: 173px;
  background-color: #ffffffd9;
  box-shadow: inset 0px 0px 20px #ffffff;
}

.frame-25 {
  display: flex;
  flex-direction: column;
  width: 803px;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 139px;
  left: calc(50% - 401px);
}

.talk-to-us {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 75px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.you-have-questions {
  position: relative;
  align-self: stretch;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame-26 {
  position: absolute;
  top: 370px;
  left: 0;
  width: 100%;
  height: 283px;
  display: flex;
  overflow: hidden;
}

.text-wrapper-20 {
  width: 100%;
  height: 326px;
  opacity: 0.15;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 495px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  position: absolute;
  bottom: 55px;
}

.frame-27 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 700px;
  padding: 0 7%;
}

.ADLEE-LOGO-2 {
  position: relative;
  width: 305px;
  height: 71.19px;
  object-fit: cover;
}

.element-adlee-all {
  position: relative;
  width: fit-content;
  font-family: "Neue Haas Grotesk Text Pro-65Md", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Large Desktop */

@media screen and (max-width: 1520px) {
  .text-wrapper-20 {
      height: 285px;
      font-size: 435px;
  }
}

@media screen and (max-width: 1400px) {
  .navbar {
    margin: 30px 60px 0;
  }
  
  .page-header,
  .pricing-section {
    padding-left: 85px;
    padding-right: 85px;
  }
  
  .decorative-img {
    position: absolute;
    top: clamp(60px, 9vw, 119px);
    right: clamp(20px, 20vw, 200px);
    width: clamp(250px, 25vw, 378px);
    height: auto;
    z-index: 2;
  }
}

@media screen and (max-width: 1300px) {
  .decorative-img {
    position: absolute;
    top: clamp(60px, 13vw, 144px);
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .pricing-cards {
    gap: 20px;
  }
  
  .pricing-card {
    max-width: 100%;
    width: 100%;
  }

  .page-title {
    font-size: 40px;
  }
  .hero-bg {
    height: 486px;
  }
  
      .decorative-img {
        position: absolute;
        top: clamp(60px, 11vw, 167px);
        right: clamp(20px, 15vw, 180px);
        width: clamp(235px, 18vw, 371px);
        height: auto;
        z-index: 2;
    }
  
  .frame-27 {
    width: 90%;
    left: 5%;
  }
  .text-wrapper-20 {
    width: 100%;
    height: 225px;
    font-size: 355px;
  }
}

/* Tablet */
@media screen and (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
  
  .navbar {
    margin: 20px 20px 0;
    padding: 15px 20px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 60vh;
    width: 300px;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 25px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .page-header,
  .pricing-section {
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 12%;
    padding: 60px 50px 40px;
  }
  .decorative-img {
    top: clamp(40px, 3vw, 154px);
  }
  
  .page-title {
    font-size: 36px;
  }
  
  .price {
    font-size: 50px;
  }
  
  .features-list li span {
    font-size: 20px;
    line-height: 26px;
  }
      .text-wrapper-20 {
        width: 100%;
        height: 280px;
        font-size: 270px;
    }
  /* Footer Tablet */
  .footer-section {
    height: auto;
    min-height: 500px;
  }
  
  .group-8 {
    height: auto;
    min-height: 500px;
  }
  
  .frame-25 {
    width: 100%;
    left: 0;
    padding: 0 10px;
    top: 100px;
  }
  
  .talk-to-us {
    font-size: 48px;
  }
  
  .you-have-questions {
    font-size: 15px;
  }
  
  .rectangle-10 {
    top: 520px;
    height: 160px;
  }
  
  .frame-27 {
    top: 570px;
    width: 90%;
    left: 5%;
  }
  
  .ADLEE-LOGO-2 {
    width: 200px;
    height: auto;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 40px 20px 30px;
  }
  
  .breadcrumb {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .pricing-section {
    padding: 40px 20px 80px;
  }
  
  .card-header {
    padding: 40px 30px 20px;
  }
  
  .plan-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 40px;
  }
  
  .period {
    font-size: 18px;
  }
  
  .select-plan-btn {
    padding: 20px 15px;
  }
  
  .select-plan-btn span {
    font-size: 18px !important;
  }
  
  .card-features {
    margin: 0 15px 15px;
    padding: 25px 20px;
  }
  
  .features-list {
    gap: 20px;
  }
  
  .features-list li span {
    font-size: 16px;
    line-height: 22px;
  }
  
  .popular-badge {
    top: 20px;
    right: 20px;
    padding: 8px 15px;
  }
  
  .popular-badge span {
    font-size: 14px;
  }
  
  /* Footer Mobile */
  .talk-to-us {
    font-size: 36px;
  }
  
  .you-have-questions {
    font-size: 16px;
  }
  
  .text-wrapper-20 {
    font-size: 125px;
    height: 212px;
  }
  
  .frame-27 {
    flex-direction: column;
    gap: 20px;
  }
  
  .ADLEE-LOGO-2 {
    width: 200px;
    height: auto;
  }
  
  .element-adlee-all {
    font-size: 18px;
  }
  .page-header, .pricing-section {
    margin-top: 10%;
  }
  .hero-bg {
    height: 400px;
  }
  .decorative-img {
    top: clamp(40px, 3vw, 154px);
            width: clamp(195px, 14vw, 371px);
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .nav-links {
    width: 250px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }

  .page-header, .pricing-section {
    margin-top: 15%;
    padding: 40px 30px 30px;
  }
  
  .page-title {
    font-size: 19px;
    width: clamp(200px, 70%, 400px);
  }
  
  .price {
    font-size: 32px;
  }
  
  .period {
    font-size: 16px;
  }
  .hero-bg {
    height: 300px;
  }
  
  .features-list li span {
    font-size: 14px;
    line-height: 20px;
  }
  .decorative-img {
    top: clamp(0px, 0vw, 100px);
    right: clamp(20px, 9vw, 135px);
    width: 120px;
  }
}

@media screen and (max-width: 400px) {
    .decorative-img {
        top: clamp(0px, 7vw, 100px);
        right: clamp(20px, 9vw, 135px);
        width: 135px;
    }
    .page-header, .pricing-section {
        margin-top: 12%;
        padding: 40px 30px 30px;
    }
    .popular-badge {
        /* font-size: 6px; */
        top: 10px;
        right: 20px;
        padding: 3px 8px;
    }
    .text-wrapper-20 {
        font-size: 115px;
        height: 204px;
    }
}
