/**
 * SPORSHIKA Custom Styles
 * Landing Page Specific Styling
 * 
 * @package SPORSHIKA
 * @version 1.0.0
 */

/* ===================== HEADER & NAVIGATION ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  background-color: transparent;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: var(--color-canvas);
  box-shadow: 0 2px 10px rgba(62, 90, 53, 0.1);
}

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

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
}

.nav-list {
  display: none;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-list li a {
  color: var(--color-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-list li a:hover {
  color: var(--color-cta);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-heading);
  transition: var(--transition);
}

.nav-menu.active {
  display: block;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .nav-list {
    display: flex;
  }
  
  .nav-menu {
    display: block !important;
  }
}

/* ===================== HERO SECTION ===================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--color-canvas) 0%, #e8e4dd 100%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-body);
  line-height: 1.6;
}

.btn-hero {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ===================== PAIN POINTS SECTION ===================== */
.pain-points-section {
  background-color: var(--color-canvas);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--color-heading);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pain-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(62, 90, 53, 0.08);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(62, 90, 53, 0.12);
}

.pain-icon {
  color: var(--color-cta);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.pain-card p {
  color: var(--color-body);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================== SOLUTION SECTION ===================== */
.solution-section {
  background: linear-gradient(to bottom, var(--color-canvas), #e8e4dd);
  padding: 5rem 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.solution-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(62, 90, 53, 0.1);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(62, 90, 53, 0.15);
}

.solution-icon {
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.solution-card p {
  color: var(--color-body);
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================== TRANSFORMATION SECTION ===================== */
.transformation-section {
  background-color: var(--color-canvas);
  padding: 5rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-before,
.comparison-after {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(62, 90, 53, 0.08);
}

.comparison-before {
  border-left: 4px solid #d9534f;
}

.comparison-after {
  border-left: 4px solid #5cb85c;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-header svg {
  flex-shrink: 0;
}

.comparison-before .comparison-header svg {
  color: #d9534f;
}

.comparison-after .comparison-header svg {
  color: #5cb85c;
}

.comparison-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-body);
  border-bottom: 1px solid #f0f0f0;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.comparison-before .comparison-list li::before {
  background-color: #d9534f;
}

.comparison-after .comparison-list li::before {
  background-color: #5cb85c;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  background: linear-gradient(to bottom, var(--color-canvas), #e8e4dd);
  padding: 5rem 0;
}

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

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(62, 90, 53, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-bangla);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #f8f7f5;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-cta);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-body);
  margin-bottom: 0;
}

/* ===================== PRICING SECTION ===================== */
.pricing-section {
  background-color: var(--color-canvas);
  padding: 5rem 0;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--color-body);
  margin-bottom: 3rem;
}

.pricing-cta {
  max-width: 600px;
  margin: 0 auto;
}

.btn-large {
  font-size: 1.5rem;
  padding: 1.5rem 4rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.pricing-guarantee {
  color: var(--color-heading);
  font-style: italic;
  margin-top: 1rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: linear-gradient(to bottom, #e8e4dd, #ddd9d0);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social h3,
.footer-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-heading);
  color: var(--color-canvas);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-cta);
  transform: translateY(-3px);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--color-body);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-legal a {
  color: var(--color-heading);
  text-decoration: underline;
  font-size: 0.95rem;
}

.footer-legal a:hover {
  color: var(--color-cta);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(62, 90, 53, 0.2);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--color-body);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================== MODALS ===================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 61, 61, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-canvas);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-heading);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--color-cta);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-body p {
  margin-bottom: 1rem;
}

/* ===================== ELEMENTOR ZONES ===================== */
.elementor-zone {
  /* Silent zone - only renders if content exists */
  /* No styling needed as Elementor provides its own */
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===================== RESPONSIVE UTILITIES ===================== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}