/* Header */
.header {
  background: #0000001C;
  backdrop-filter: blur(24px);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.logo-text {
  color: #f39c12;
}

.logo-concepts {
  color: white;
  margin-left: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #FAFAFA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.nav-link:hover {
  color: #f39c12;
}

header .contact-btn {
  background: transparent;
  border: 1.5px solid #D79715;
  padding: 16px 30px;
  border-radius: 80px;
  color: #FAFAFA;
  transition: all .5s ease-in-out;
}

header .contact-btn:hover {
  background: #D79715;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2)), url('./img/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-content img {
  width: 12px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-top: 100px;
}

.highlight {
  color: #E8A92B;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 48px;
  opacity: 0.9;
}

.hero-subtitle span {
  color: #FFC444;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}


.full-width {
  width: 100%;
}

.hero-image {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-image img {
  border-radius: 10px;
  max-width: 400px;
  height: auto;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.why-choose {
  padding: 42px 0 56px;
  background: #EFEFEF;
  text-align: center;
}

.why-choose .section-title {
  margin-bottom: 8px;
  color: #2C3339;
}

.why-chooses .section-subtitle {
  font-size: 16px;
  color: #707982;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 0;
}

/* Stats Bar */
.stats-bar {
  background: #f39c12;
  padding: 16px 0;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  color: white;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: .07em;
}

.stat-divider {
  color: white;
  font-size: 18px;
}

/* Plans Worth Section */
.plans-worth {
  padding: 42px 0 64px;
  background: #EFEFEF;
}

.plans-worth .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.plans-worth .section-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: #707982;

}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card {
  border-radius: 32px;
  padding: 30px;
  background: #FDF9F1A3;
  border: 1px solid #E8A92B80;
}

.comparison-card .btn-primary {
  background-color: #D79715;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  justify-content: center;
}

.without-membership {
  border-radius: 32px;
  border: 1px solid #FFB5B5;
  background: #FFEBEB7A;
}

.without-membership button.btn.btn-outline.full-width {
  font-size: 18px;
  color: #707982;
  background-color: #F4F4F4;
  border: none;
  text-align: center;
  justify-content: center;
  border-radius: 16px;
}

.card-header {
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C9C9C9;
}

.best-value {
  color: #E8A92B;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  display: block;
}

.pay-every-time {
  color: #FF0000;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.card-header h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.benefits {
  margin-bottom: 30px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2C3339;
}

.benefit div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.benefit strong {
  color: #2C3339;
  font-weight: 600;
}

.benefit small {
  font-size: 14px;
  font-weight: 500;
  color: #2C3339;
}

.check-icon {
  color: #27ae60;
  flex-shrink: 0;
  margin-top: 2px;
}

.x-icon {
  color: #FF0000;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit.negative {
  opacity: 0.7;
}

/* Membership Plans Table */
.membership-plans {
  padding: 80px 0;
  background: #f8f9fa;
}

.plans-table {
  margin-top: 40px;
  overflow-x: auto;
}

.plans-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px 0 0;
}

.plans-table {
  border-radius: 20px 20px 0 0;
}

.plans-table th {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.plans-table .plan-left {
  text-align: left;
}

.plan-header span {
  color: #b08a2e;
  font-size: 12px;
}

.plans-table .pricing-row td.feature-name {
  background-color: #b08a2e;
}

.membership-plans .pricing-row {
  color: #fff;
  background-color: rgb(198 156 54);
}

.membership-plans .pricing-row td {
  color: #fff !important;
  background-color: #b08a2e !important;
}

.table-wrapper {
  background: #fff;
}

.plans-table th:nth-last-of-type(1) {
  border-radius: 0 20px 0 0;
}

.plans-table th:nth-of-type(1) {
  border-radius: 20px 0 0 0;
}

.plans-table tbody {
  border: 1px solid #eee;
}

.plans-table tbody tr:nth-of-type(2n) {
  background-color: #f9f9f9;
}

.plans-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.feature-name {
  text-align: left !important;
  font-weight: 500;
}

.check {
  color: #27ae60;
  font-size: 18px;
  font-weight: bold;
}

.pricing-row {
  background: #f8f9fa;
}

.price {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.pro-price,
.plus-price {
  color: #E8A92B;
  font-size: 20px;
}

.table-footer {
  margin-top: 30px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.table-footer a {
  color: #f39c12;
  text-decoration: none;
}

/* Commitment Section */
.commitment {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
}

.commitment-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.commitment-content .commitment-text {
  width: 54%;
}

.commitment-content .commitment-image {
  width: 43%;
}

.commitment-content .commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-text h2 {
  margin-bottom: 30px;
  color: #fff;
}

.commitment-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.commitment-text .btn.btn-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.commitment-image img {
  width: 100%;
  border-radius: 24px;
}

/* Contact Form Section */
#contact-form, #plans, #commitment {
  scroll-margin-top: 50px;
}
.contact-form {
  padding: 59px 0 80px;
  background: #FAFAFA;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
}

.form-text h2 {
  margin-bottom: 8px;
  color: #2C3339;
}

.form-text p {
  font-size: 16px;
  color: #707982;
  font-weight: 400;
  max-width: 90%;
  margin-bottom: 32px;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2C3339;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  color: #2C3339;
  font-weight: 500;
}

.contact-item a {
  text-decoration: none;
  font-weight: 500;
  color: #2C3339;
  font-size: 16px;
}

.contact-item .icon {
  width: 32px;
  height: 32px;
  border: 1px solid #D79715;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.contact-item svg {
  color: #D79715;
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  height: auto;
}

.membership-form .btn-primary {
  color: #fff;
  align-items: center;
  justify-content: center;
  background-color: #D79715;
  font-size: 18px;
  border-radius: 16px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #2C3339;
}

.form-group input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  background-color: transparent;
  color: #707982;
  font-size: 16px;
}

.form-group input::placeholder {
  font-size: 16px;
  color: #707982;
}

.form-group input:focus {
  outline: none;
  border-color: #f39c12;
}

.error-message {
  color: #d9534f;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #2C3339;
  white-space: nowrap;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
  background-color: #D79715;
  border-color: #D79715;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Footer */
.dc-footer {
  background: #2C3339;
  color: #fff;
  text-align: center;
  padding: 40px 0 0;
}

/* Logo */
.footer-logo {
  width: 213px;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
  margin: 10px auto 12px;
  max-width: 250px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a img {
  width: 23px;
  height: auto;
}

.social-icons a:hover {
  color: #d6ab55;
}

/* Contact Info */
.footer-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
}

.dc-footer .info-item {
  font-size: 16px;
  color: #fff;
}

.dc-footer .info-item .icon {
  width: 32px;
  height: 32px;
  background-color: #FAFAFA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.dc-footer .info-item a {
  font-size: 16px;
  color: #FAFAFA;
  text-decoration: none;
}

/* Company Text */
.company-info {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 16px;
}

.scale-down img {
  width: 40px;
  margin-top: 40px;
}

.header .toggle {
  display: none;
  position: relative;
  z-index: 9999;
}

.header .toggle span{
  width: 30px;
  height: 2px;
  background-color: #fafafa;
  display: block;
  transition: all .5s ease-in-out;
}

/* Footer Bottom */
.footer-bottom {
  padding: 10px 30px;
  font-size: 12px;
  text-align: center;
  background-color: #282C2F;
  margin-top: 48px;
  color: #FFFFFF;
}

.footer-bottom p a {
  color: #fff;
}


/* Responsive */
@media (max-width: 600px) {
  .footer-info {
    flex-direction: column;
    gap: 15px;
  }
}


@media(max-width: 992px) {
  .commitment-content .commitment-text {
    width: 100%;
  }

  .header .toggle{
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .header nav.active{
    right: 0;
  }
  .header nav{
    width: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: #fff;
    height: 100vh;
    align-items: flex-start;
    max-width: 500px;
    z-index: 9999;
    padding: 80px 20px  20px;
    transition: all 0.5s ease-in-out;
  }
  .header nav .nav-link{
    color: #b08a2e;
    font-size: 18px;
  }
  .stat {
    font-size: 20px;
  }

  .commitment-content .commitment-image {
    width: 100%;
    padding-top: 30px;
  }
  .header .toggle.active span{
    background-color: #E8A92B;
    transform: rotate(45deg);
  }
  .header .toggle.active span:nth-of-type(2){
    transform: rotate(-45deg);
    margin-top: -6px;
  }
  .header{
    padding: 10px 0;
  }
  

  .commitment,
  .membership-plans {
    padding: 45px 0;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .why-choose {
    padding: 30px 0;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
  .logo{
    width: 200px;
  }
  .logo a, .logo img{
    width: 100%;
  }

  .benefit {
    font-size: 16px;
  }

  .membership-plans .pricing-row td {
    font-size: 16px;
  }

  .card-header h3 {
    font-size: 20px;
  }

  .stats-bar .stats {
    gap: 16px;
  }

  .stats-bar .stat {
    font-size: 14px;
  }

  p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .header .container {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-image {
    display: none;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .commitment-content {
    grid-template-columns: 1fr;
  }

  .form-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .plans-table {
    font-size: 14px;
  }

  .plans-table th,
  .plans-table td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title{
    margin-top: 60px;
    font-size: 24px;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .stats-bar .stat {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
  }

  .stat-divider {
    display: none;
  }
}