/* Modern styles for gesdepapp.html */

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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f8f9fa;
}

/* Re-using and enhancing existing variables or defining new ones */
:root {
  --primary-color: #8000FF;
  --secondary-color: #FF3385;
  --accent-color: #FFD700;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Modern Section Styling */
.modern-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.modern-section.light {
  background: white;
}

.modern-section.gray {
  background: #f8f9fa;
}

.modern-section.dark {
  background: var(--dark-bg);
  color: white;
}

/* Section Titles */
.modern-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #4a4a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.modern-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(128, 0, 255, 0.1) 0%, rgba(255, 51, 133, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Alternating Feature Rows */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-image-container {
  flex: 1;
  position: relative;
}

.feature-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s ease;
}

.feature-row:hover .feature-image {
  transform: scale(1.02);
}

.feature-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(128, 0, 255, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
  line-height: 1.2;
}

.feature-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Video Section Modernized */
.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hover-shadow);
  position: relative;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 2;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #8000FF, #FF3385);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(128, 0, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 51, 133, 0.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .modern-title {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 1.8rem;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}

/* Specific styles for infjug.html */
.hero-subtitle {
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* Styles extracted from gesdepapp.html inline styles */
.product-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.anniversary-image {
  max-width: 500px;
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.anniversary-text {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #A366FF, #FF9FD1, #FFD166, #F9F871);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}

.content-section {
  padding: 80px 20px;
  background: white;
}

.content-section.alt {
  background: #f0f4f8;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-section {
  padding: 60px 20px;
  background: #f0f4f8;
}

/* Merged Media Queries */
@media (max-width: 768px) {

  /* Existing media query contents + new ones */
  .anniversary-text {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .product-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}