/* ==========================================================================
   Premium Program Page Styles
   ========================================================================== */

/* ==========================================================================
   Premium Hero Section
   ========================================================================== */

.premium-hero {
  background: var(--gradient-copper);
  color: var(--white);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.premium-hero-image {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 1;
  max-width: 70%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.premium-hero-content {
  text-align: start;
  z-index: 2;
  position: relative;
  width: 100%;
  padding-top: 2rem;
}

.premium-hero-text {
  margin-bottom: 2rem;
}

.premium-hero h1 {
  color: var(--white);
  font-size: var(--fs-90);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.text-light-copper {
  color: var(--copper-50);
  font-weight: 900;
}

.premium-hero .hero-subtitle {
  color: var(--white);
  font-size: var(--fs-40);
  font-weight: 400;
  margin-bottom: 2rem;
}

.premium-hero .hero-cta {
  background: var(--copper-200);
  border: none;
  font-size: var(--fs-24);
  padding: 0.5rem 2.75rem;
  display: inline-flex;
}

.premium-hero .hero-cta::after {
  background: var(--copper-700);
}

.premium-hero .hero-cta .btn-text {
  color: var(--white);
  font-size: var(--fs-24);
}

.premium-hero .hero-cta .btn-text-grow {
  color: var(--white);
  font-size: var(--fs-24);
}

/* ==========================================================================
   Premium Section
   ========================================================================== */

.premium-section {
  background: var(--gray-200);
  padding: 8rem 0 0 0;
}

.premium-content {
  max-width: 1400px;
  margin: 0 auto;
}

.premium-text {
  text-align: center;
  margin-bottom: 4rem;
}

.premium-title {
  font-size: var(--fs-60);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.premium-text-light-copper {
  color: var(--copper-700);
  font-weight: 900;
}

.premium-white-card {
  background: var(--gradient-copper);
  border: 12px solid var(--white);
  border-radius: 50px;
  padding: 1rem;
  box-shadow: var(--box-shadow-md);
  margin-bottom: 4rem;
  position: relative;
}

.premium-inner-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}

.premium-inner-card div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  padding: 0 3rem;
}

.premium-inner-card div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background: var(--copper-100);
  opacity: 0.8;
  border-radius: 1px;
}

.premium-inner-card img {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  padding: 0;
  box-sizing: border-box;
}

.premium-inner-card h6 {
  font-size: var(--fs-24);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.premium-inner-card p {
  color: var(--white);
  font-size: var(--fs-21);
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.95;
}

/* ==========================================================================
   Premium Content Section
   ========================================================================== */

.premium-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.premium-content-section img {
  width: 100%;
  height: auto;
}

.premium-content-section p {
  font-size: var(--fs-24);
  line-height: 1.5;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Premium Benefits Section
   ========================================================================== */

.premium-benefits-section {
  background: var(--gradient-copper);
  padding: 6rem 0;
}

.premium-benefits-text {
  text-align: center;
  margin-bottom: 4rem;
}

.premium-benefits-title {
  font-size: var(--fs-60);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5rem;
  line-height: 1.2;
}

.premium-benefits-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.premium-benefits-cards .solution-card {
  position: relative;
  border-radius: var(--border-radius-24);
  padding: 4.5rem 2.5rem 2.5rem;
  box-shadow: var(--box-shadow-md);
  transition: var(--transition-normal);
  background: var(--white);
  border: 1px solid #e5e7eb;
}

.premium-benefits-cards .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-lg);
}

.premium-benefits-cards .solution-card-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
  background: var(--white);
}

.premium-benefits-cards .solution-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 80px;
  max-height: 80px;
}

.premium-benefits-cards .solution-card-content {
  margin-top: 1rem;
}

.premium-benefits-cards .solution-card-title {
  color: var(--copper-500);
  font-size: var(--fs-30);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: center;
}

.premium-benefits-cards .solution-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-benefits-cards .solution-card-item {
  font-size: var(--fs-24);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  padding-left: 0;
  position: relative;
  color: var(--gray-900);
}

.premium-benefits-cards .solution-card-item:last-child {
  margin-bottom: 0;
}

.premium-benefits-cards .solution-card-item::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--copper-500);
}

/* ==========================================================================
   Premium Features Section
   ========================================================================== */

.premium-features-section {
  background: var(--gray-200);
  padding: 6rem 0 0 0;
}

.premium-features-text {
  text-align: center;
  margin-bottom: 4rem;
}

.premium-features-title {
  font-size: var(--fs-60);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.premium-features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.premium-features-card {
  background: var(--white);
  border: 2px solid var(--copper-150);
  border-radius: var(--border-radius-24);
  padding: 2rem;
  box-shadow: var(--box-shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.premium-features-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.premium-features-card-content {
  text-align: center;
}

.premium-features-card-title {
  font-size: var(--fs-30);
  font-weight: 700;
  color: var(--copper-400);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.premium-features-card-description {
  font-size: var(--fs-24);
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0;
}

/* Slider Navigation */
.premium-features-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.premium-features-nav-btn {
  background: none;
  border: none;
  color: var(--copper-700);
  font-size: var(--fs-18);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-normal);
}

.premium-features-nav-btn:hover {
  color: var(--copper-500);
  transform: scale(1.1);
}

.premium-features-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.premium-features-prev,
.premium-features-next {
  background: none;
  border: none;
  font-size: var(--fs-36);
  color: var(--copper-900);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: var(--transition-normal);
}

.premium-features-prev:hover,
.premium-features-next:hover {
  color: var(--copper-900);
}

.premium-features-counter {
  font-size: var(--fs-21);
  font-weight: 700;
  color: var(--copper-900);
  padding: 0.5rem 1rem;
}

/* ==========================================================================
   Premium Designed for Section
   ========================================================================== */

.premium-designed-for-section {
  background: var(--gray-200);
  padding: 6rem 0 0 0;
}

.premium-designed-for-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

.premium-designed-for-image {
  width: 100%;
  height: auto;
}

.premium-designed-for-text {
  width: 100%;
  height: auto;
}

.premium-designed-for-text .text-content-title {
  margin-bottom: 3rem;
}

.text-content-border {
  margin-bottom: 3rem;
  border-left: 12px dotted var(--copper-150);
  padding-left: 2.5rem;
}

.premium-designed-for-text h2 {
  font-size: var(--fs-60);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.premium-designed-for-text p {
  font-size: var(--fs-30);
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0;
}

.premium-designed-for-text h3 {
  font-size: var(--fs-30);
  font-weight: 700;
  color: var(--copper-600);
  margin: 2rem 0 1rem 0;
  line-height: 1.2;
}

/* ==========================================================================
   Premium English Level Section
   ========================================================================== */

.premium-english-level-section {
  background: var(--gradient-copper);
  padding: 6rem 1rem;
}

.premium-english-level-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.premium-english-level-container h2 {
  color: var(--white);
  font-size: var(--fs-60);
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
}

.premium-english-level-container h3 {
  color: var(--white);
  font-size: var(--fs-30);
  line-height: 1.4;
  margin: 0;
  margin-bottom: 1rem;
}

.premium-english-level-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.premium-english-level-images img {
  width: auto;
  height: auto;
  max-height: 80px;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-form-section {
  padding: 6rem 0;
  color: var(--gray-0);
}

.contact-form-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-title h2 {
  font-size: var(--fs-60);
  margin-bottom: 1rem;
}

.contact-form-title span {
  font-weight: 900;
}

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-24);
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form .form-title {
  font-size: var(--fs-60);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: var(--fs-24);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-100);
  border-radius: 8px;
  font-size: var(--fs-21);
  background: var(--gray-100);
  color: var(--gray-500);
  transition: var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--copper-100);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.2);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .submit-btn {
  background: var(--copper-500);
  border: 2px solid var(--copper-500);
  border-radius: var(--border-radius-16);
  color: var(--white);
  font-size: var(--fs-24);
  font-weight: 700;
  padding: 0.5rem 2.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.contact-form .submit-btn:hover {
  background: var(--copper-300);
  border-color: var(--copper-300);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

/* ==========================================================================
   Premium Footer Section
   ========================================================================== */

body.page-template-page-premium-es footer,
body.page-template-page-premium-es .site-footer,
body.page-template-page-premium-es #footer {
  background: var(--gradient-copper);
  color: var(--copper-50);
}

body.page-template-page-premium-es .footer-bottom {
  border-top: 1px solid var(--copper-100);
}

body.page-template-page-premium-es footer a,
body.page-template-page-premium-es .site-footer a,
body.page-template-page-premium-es #footer a {
  color: var(--copper-50);
  transition: var(--transition-normal);
}

body.page-template-page-premium-es footer a:hover,
body.page-template-page-premium-es .site-footer a:hover,
body.page-template-page-premium-es #footer a:hover {
  color: var(--white);
  opacity: 0.8;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1399px) {
  .premium-benefits-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }

}

@media (max-width: 767px) {
  .premium-hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 100%;
    height: 99%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
  }

  .premium-hero-content {
    text-align: center;
  }

  .premium-hero-text {
    text-align: center;
  }

  .premium-section {
    padding: 4rem 0 0 0;
  }

  .premium-inner-card {
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: center;
  }

  .premium-inner-card div:not(:last-child)::after {
    display: none;
  }

  .premium-inner-card div {
    border-bottom: 1px solid var(--copper-100);
    opacity: 0.7;
    padding: 2rem 0;
  }

  .premium-inner-card div:last-child {
    border-bottom: none;
  }

  .premium-content-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column-reverse;
  }

  .premium-title {
    font-size: var(--fs-36);
  }

  .premium-benefits-section {
    padding: 5rem 0;
  }

  .premium-benefits-cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .premium-benefits-cards .solution-card {
    padding: 4rem 2rem;
  }

  .premium-features-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .premium-features-container::-webkit-scrollbar {
    display: none;
  }

  .premium-features-card {
    padding: 2rem;
    scroll-snap-align: start;
    min-width: 280px;
  }

  .premium-features-card-title {
    font-size: var(--fs-20);
  }

  .premium-features-card-description {
    font-size: var(--fs-14);
  }

  .premium-features-title {
    font-size: var(--fs-36);
  }

  .premium-designed-for-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

}