/* ============================================
   SERVICES PAGE STYLES
   Tawfeeqoh Hamzat - Premium Personal Brand
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  padding: 10rem 8vw 5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.page-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  margin-bottom: 1.5rem;
}

.page-headline {
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--space-3xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 24px;
  color: var(--accent-periwinkle);
}

.service-meta {
  flex: 1;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  background: rgba(123, 108, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.service-meta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

.service-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-benefits,
.service-problem {
  margin-bottom: 1.25rem;
}

.service-benefits h4,
.service-problem h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-benefits ul {
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.service-benefits li i {
  color: var(--accent-periwinkle);
  font-size: 12px;
}

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

.service-cta {
  margin-top: auto;
}

.service-cta .btn {
  width: 100%;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--space-3xl) 0;
  background: rgba(255, 255, 255, 0.4);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-headline {
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-medium);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  font-size: 18px;
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.inquiry-form .form-group {
  margin-bottom: 1.25rem;
}

.inquiry-form .form-label {
  font-size: 12px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    padding: 8rem 6vw 4rem;
    min-height: auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 5vw 3rem;
  }
  
  .page-headline {
    font-size: clamp(36px, 8vw, 48px);
  }
  
  .service-card {
    padding: 1.75rem;
  }
  
  .service-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
  }
  
  .service-icon i {
    font-size: 20px;
  }
  
  .service-meta h3 {
    font-size: 22px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
  
  .modal-title {
    font-size: 24px;
  }
}