/* ==========================================================================
   DIGIMOZO SUBPAGES STYLESHEET (Services, Rewards, About, Let's Talk)
   Luxury Dark Botanical Theme + Emerald & Terracotta Accents
   ========================================================================== */

/* Page Wrapper */
.subpage-wrapper {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Page Header Hero */
.page-hero-banner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
  padding: 0 20px;
}

.page-hero-banner .kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #00D09C;
  background: rgba(0, 208, 156, 0.08);
  border: 1px solid rgba(0, 208, 156, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.page-hero-banner .page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.page-hero-banner .page-title em {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #00D09C;
  padding-right: 4px;
}

.page-hero-banner .page-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* Common Section Headers inside Subpages */
.subpage-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.subpage-section-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.subpage-section-header h2 em {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #00D09C;
}

.subpage-section-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   1. SERVICES PAGE SPECIFIC
   ========================================================================== */
.services-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.service-pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 208, 156, 0.4);
  box-shadow: 0 16px 36px rgba(18, 95, 80, 0.08);
}

.service-pillar-card .pillar-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 208, 156, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-pillar-card .pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-pillar-card .pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex: 1;
}

.pillar-features-list {
  list-style: none;
  border-top: 1px dashed var(--border-light);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-features-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-features-list li .bullet {
  color: #00D09C;
  font-size: 10px;
}

/* Methodology Steps List */
.services-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.methodology-step-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.methodology-step-item:hover {
  border-color: #00D09C;
}

.methodology-step-item .step-num {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
  color: #00D09C;
  background: rgba(0, 208, 156, 0.08);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.methodology-step-item .step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.methodology-step-item .step-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Common Page CTA Banner */
.subpage-cta-banner {
  background: linear-gradient(135deg, #07251F 0%, #0E352C 100%);
  border: 1px solid rgba(0, 208, 156, 0.25);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.subpage-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 208, 156, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.subpage-cta-banner h2 em {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-style: normal;
  color: #00D09C;
}

.subpage-cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 32px;
}

.subpage-cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00D09C;
  color: #052e22;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 208, 156, 0.4);
}

.subpage-cta-banner .btn-primary:hover {
  background: #1affc2;
  transform: translateY(-2px);
}

/* ==========================================================================
   2. REWARDS & GAMIFICATION PAGE
   ========================================================================== */
.rewards-mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.reward-mechanic-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reward-mechanic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 208, 156, 0.4);
  box-shadow: 0 16px 36px rgba(18, 95, 80, 0.08);
}

.reward-mechanic-card .mechanic-icon {
  font-size: 32px;
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 208, 156, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-mechanic-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.reward-mechanic-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex: 1;
}

.reward-mechanic-card .mechanic-stat-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #125F50;
  background: #EBF5F2;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Loyalty Tiers Grid */
.rewards-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.reward-tier-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}

.reward-tier-card.featured {
  border: 2px solid #00D09C;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 208, 156, 0.04) 100%);
  box-shadow: 0 12px 30px rgba(0, 208, 156, 0.15);
}

.reward-tier-card .tier-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.reward-tier-card.featured .tier-badge {
  color: #00D09C;
}

.reward-tier-card .tier-points {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.reward-tier-card .tier-perk {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================================================
   3. ABOUT US PAGE
   ========================================================================== */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 860px) {
  .about-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-story-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-story-text p {
  margin-bottom: 16px;
}

.about-mission-box {
  background: linear-gradient(135deg, #07251F 0%, #0E352C 100%);
  border: 1px solid rgba(0, 208, 156, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.about-mission-box h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00D09C;
  margin-bottom: 14px;
}

.about-mission-box p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: #FFFFFF;
}

/* Stats Counter Row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 64px;
  text-align: center;
}

.about-stat-item .stat-num {
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px;
  font-weight: 700;
  color: #125F50;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-item .stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.about-value-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 208, 156, 0.4);
}

.about-value-card .value-icon {
  font-size: 24px;
  color: #00D09C;
  margin-bottom: 14px;
}

.about-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   4. LET'S TALK / CONTACT PAGE
   ========================================================================== */
.letstalk-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (max-width: 860px) {
  .letstalk-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.letstalk-info-card {
  background: linear-gradient(135deg, #07251F 0%, #0C3E34 100%);
  border: 1px solid rgba(0, 208, 156, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.letstalk-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
}

.letstalk-info-card h3 em {
  font-family: 'Poppins', sans-serif !important;
  font-style: normal;
  font-weight: 700;
  color: #00D09C;
}

.contact-direct-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-direct-item .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 208, 156, 0.12);
  color: #00D09C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-direct-item .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.contact-direct-item .val {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

.contact-direct-item a.val:hover {
  color: #00D09C;
}

.letstalk-sla-box {
  margin-top: auto;
  background: rgba(0, 208, 156, 0.1);
  border: 1px solid rgba(0, 208, 156, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #00D09C;
}

/* Contact Form Card */
.letstalk-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.letstalk-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.letstalk-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.letstalk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .letstalk-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.letstalk-form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.letstalk-form-card input,
.letstalk-form-card select,
.letstalk-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-canvas);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.letstalk-form-card input:focus,
.letstalk-form-card select:focus,
.letstalk-form-card textarea:focus {
  outline: none;
  border-color: #00D09C;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 208, 156, 0.15);
}

.btn-submit-inquiry {
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: #125F50;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(18, 95, 80, 0.25);
}

.btn-submit-inquiry:hover {
  background: #1A7866;
  transform: translateY(-2px);
}

/* FAQ Accordion */
.letstalk-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.letstalk-faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.letstalk-faq-item[open] {
  border-color: #00D09C;
}

.letstalk-faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.letstalk-faq-item summary::-webkit-details-marker {
  display: none;
}

.letstalk-faq-item summary .faq-toggle-icon {
  font-size: 20px;
  color: #00D09C;
  transition: transform 0.2s ease;
}

.letstalk-faq-item[open] summary .faq-toggle-icon {
  transform: rotate(45deg);
}

.letstalk-faq-item .faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
