@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0b5ed7;
  /* Bootstrap primary dark */
  --secondary-color: #6c757d;
  --accent-color: #f39c12;
  --bg-light: #f8f9fa;
  --text-dark: #333;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Header/Navbar Customization */
.navbar {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
  letter-spacing: 0.5px;
}

/* Hero Carousel */
.hero-carousel {
  margin-top: 56px;
  /* Offset for navbar */
}

.hero-carousel .carousel-item {
  width: 100%;
  background: #000;
  position: relative;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-carousel .carousel-caption {
  bottom: 20%;
  z-index: 2;
}

.hero-carousel .carousel-caption h2 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.hero-carousel .carousel-caption p {
  font-size: 1.25rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.3s both;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
    background-color: #000;
}

/* Program Explanation Section */
.program-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.program-section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.program-section h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.program-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Two Column Section */
.two-column-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chairman-message {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.chairman-message:hover {
  transform: translateY(-5px);
}

.chairman-message h3 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.chairman-message p {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}

.agreement-slider .carousel-item {
  /* height: 400px; */
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.agreement-slider .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Subscription Card Section */
.subscription-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.subscription-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.subscription-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.subscription-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.price-container {
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

.price-breakdown {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.total-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 10px;
}

.terms-container {
  margin-bottom: 25px;
  text-align: left;
}

.terms-container .form-check-input {
  cursor: pointer;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
}

.terms-container .form-check-label {
  cursor: pointer;
  margin-left: 8px;
  font-size: 0.95rem;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
}

.btn-pay {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.4);
}

.btn-pay:hover:not(:disabled) {
  background: #094eb3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 94, 215, 0.5);
}

.btn-pay:disabled {
  background: #a0c3ff;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Success Page */
.success-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}

.success-card {
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 500px;
}

.success-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease;
}

.success-card h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* Footer */
.footer-section {
    background-color: #f8f8f8;
    padding: 40px 0 20px;
    color: #333;
}

.footer-logo img {
    width: 90px;
    height: auto;
}

.footer-company-name {
    font-weight: 700;
    color: #222;
    font-size: 16px;
    line-height: 1.4;
}

.footer-address {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-title {
    font-weight: 700;
    color: #222;
}

.footer-contact {
    font-size: 14px;
    color: #555;
}

.footer-divider {
    margin: 25px 0 15px;
    border-color: #ddd;
}

.footer-copy {
    font-size: 13px;
    color: #666;
}

@media (max-width: 767px) {
    .footer-section {
        text-align: left;
    }

    .footer-logo img {
        width: 75px;
    }

    .footer-company-name {
        font-size: 15px;
    }

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