:root {
  --primary-color: #054ca3;
  --secondary-color: #033a80;
  --accent-color: #4cc9f0;
  --dark-bg: #0f172a;
  --card-bg: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --gradient: linear-gradient(135deg, #054ca3 0%, #033a80 100%);
  --shadow: 0 10px 30px -10px rgba(5, 76, 163, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.text-center {
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(5, 76, 163, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 76, 163, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section-header {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.badge {
  background-color: rgba(5, 76, 163, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  /* Always show subtle shadow on light bg */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links .btn-primary {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - UPDATED TO CLEAN STYLE */
.hero-section {
  position: relative;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  min-height: 85vh;
  /* Slightly shorter for a cleaner look */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle geometric pattern overlay */
  background-image:
    linear-gradient(rgba(200, 200, 200, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 200, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fffbeb;
  /* light yellow */
  color: #b45309;
  /* warm brown */
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.hero-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
}

.hero-text {
  width: 100%;
  color: var(--text-primary);
}

.hero-text h1 {
  font-size: 4.5rem;
  /* Large, bold */
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0f172a;
  /* Dark text */
  letter-spacing: -1.5px;
}

.hero-text h1 span {
  display: block;
  color: #d97706;
  /* Gold/Orange accent */
  background: none;
  -webkit-text-fill-color: initial;
  margin-top: 0.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary.hero-btn {
  background: #054ca3;
  /* Requested Blue */
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(5, 76, 163, 0.4);
  border: none;
}

.btn-primary.hero-btn:hover {
  background: #033a80;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(5, 76, 163, 0.5);
}

.btn-secondary.hero-btn {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid #e2e8f0;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  backdrop-filter: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-secondary.hero-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.feature-list li i {
  color: var(--accent-color);
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 76, 163, 0.2);
}

.benefit-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(5, 76, 163, 0.1);
  color: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.benefit-card:hover .icon-box {
  background: var(--primary-color);
  color: var(--white);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Media Section */
.media-section {
  padding: 6rem 0;
}

.media-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  height: 500px;
  /* Fixed height for the grid */
}

.feature-video {
  height: 100%;
}

.video-wrapper {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.video-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.media-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-wrapper {
  display: flex;
  background: var(--dark-bg);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-info {
  flex: 1;
  padding: 4rem;
  background: url("contact-bg.svg");
  /* pattern */
  background-size: cover;
  color: var(--white);
  position: relative;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.info-item {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.contact-form {
  flex: 1.2;
  padding: 4rem;
  background: var(--white);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.full-width {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-grid {
    flex-direction: column;
  }

  .media-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .feature-video {
    height: 400px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Member Zone Custom CSS */
.text-gradient-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rounded-full {
  border-radius: 9999px !important;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px !important;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #0f172a;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
  transform: scale(1.02);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
