/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

.products-listing {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-card-large {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-large:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card-header-large {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.product-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.95;
}

.product-icon-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-card-body-large {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title-large {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.product-description-large {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-features-list h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.product-features-list ul {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-features-list li i {
  color: #97c568;
  margin-top: 0.25rem;
}

.product-actions {
  margin-top: auto;
}

.app-store-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.store-link {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #d3e7c0;
  border-radius: 10px;
  text-decoration: none;
  color: #2a512b;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.store-link:hover {
  background: var(--gradient-1);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-hero {
  padding: 150px 0 100px;
  color: #fff;
}

.product-detail-content {
  text-align: center;
}

.product-icon-hero {
  font-size: 8rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.product-name {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.product-tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  min-width: 200px;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-download i {
  font-size: 2rem;
}

.btn-download div {
  text-align: left;
}

.btn-download small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.btn-download strong {
  display: block;
  font-size: 1.125rem;
}

.product-screenshots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screenshot-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
}

.screenshot-item {
  flex-shrink: 0;
  width: 280px;
  height: 560px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content {
  padding: 80px 0;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.content-section .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #d3e7c0;
  border-radius: 15px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 1.5rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-color);
}

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

.info-list i {
  font-size: 1.5rem;
  color: #97c568;
}

.info-list strong {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
}

.info-list span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   BLOG STYLES
   ============================================ */

.blog-listing {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta i {
  margin-right: 0.25rem;
}

.blog-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-summary {
  color: var(--text-light);
  margin: 1rem 0;
  line-height: 1.7;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  background: #d3e7c0;
  color: #2a512b;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-read-more {
  background: transparent;
  color: #97c568;
  border: 2px solid #97c568;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

.btn-read-more:hover {
  background: #97c568;
  color: #fff;
  transform: translateX(5px);
}

/* Blog Detail */
.blog-detail {
  padding: 150px 0 80px;
  background: #f8f9fa;
}

.blog-detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-badge {
  background: var(--gradient-1);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
}

.blog-detail-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: var(--dark-color);
}

.blog-detail-summary {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

.blog-detail-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.blog-detail-image img {
  width: 100%;
  height: auto;
}

.blog-detail-content {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.125rem;
}

.blog-detail-footer {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  background: #d3e7c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a512b;
  text-decoration: none;
  transition: var(--transition);
}

.share-btn:hover {
  background: var(--gradient-1);
  color: #fff;
  transform: translateY(-3px);
}

.blog-navigation {
  text-align: center;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-header {
  background: var(--gradient-1);
}

.about-content {
  padding: 80px 0;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  text-align: center;
}

.image-placeholder i {
  font-size: 8rem;
  color: #97c568;
  opacity: 0.3;
}

.about-text {
  padding: 2rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.stats-section {
  padding: 80px 0;
  background: var(--gradient-1);
  color: #fff;
}

.stat-box {
  padding: 2rem;
  text-align: center;
}

.stat-box .stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.contact-info-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.contact-info-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-form-card {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid #d3e7c0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: #97c568;
  box-shadow: 0 0 0 3px rgba(151, 197, 104, 0.1);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.alert {
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.alert-success {
  background: rgba(151, 197, 104, 0.1);
  border: 2px solid #97c568;
  color: #2a512b;
}
