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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 8vw 4rem;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease forwards;
}

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

.headline-line {
  display: block;
  line-height: 1.05;
}

.headline-line em {
  font-style: italic;
}

.hero-subheadline {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: all var(--transition-medium);
  background: var(--text-light);
}

.hero-image-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-periwinkle) 0%, var(--accent-periwinkle-dark) 100%);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */

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

.capabilities-headline {
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.capability-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);
}

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

.capability-icon {
  width: 60px;
  height: 60px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.capability-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 1rem;
}

.capability-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.capabilities-caption {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

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

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.process-headline {
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-periwinkle);
  background: rgba(123, 108, 255, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.process-visual {
  display: flex;
  justify-content: center;
}

.process-image-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.process-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.1) 0%, rgba(123, 108, 255, 0.2) 100%);
  color: var(--accent-periwinkle);
  font-size: 80px;
}

/* ============================================
   WORK SECTION
   ============================================ */

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

.work-header {
  margin-bottom: 3rem;
}

.work-title {
  margin-bottom: 1rem;
}

.work-intro {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.work-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: all var(--transition-medium);
}

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

.work-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}

.work-content {
  padding: 1.5rem 2rem 2rem;
}

.work-category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-periwinkle);
  margin-bottom: 0.5rem;
  display: block;
}

.work-content h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 0.75rem;
}

.work-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

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

.testimonials-headline {
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: relative;
}

.testimonial-quote {
  font-size: 24px;
  color: var(--accent-periwinkle);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-periwinkle) 0%, var(--accent-periwinkle-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
}

.author-info h5 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   PRINCIPLES SECTION
   ============================================ */

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

.principles-headline {
  margin-bottom: 3rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.principle-icon {
  width: 72px;
  height: 72px;
  background: rgba(123, 108, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

.principle-item h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.principle-item p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   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;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 14px;
  color: var(--text-muted);
}

.cta-note i {
  color: var(--accent-periwinkle);
  margin-right: 0.5rem;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding: 7rem 6vw 4rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-image-card {
    max-width: 280px;
    transform: rotate(0deg);
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-visual {
    display: none;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 5vw 3rem;
    min-height: auto;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-image-card {
    max-width: 220px;
  }
  
  .capability-card {
    padding: 1.75rem;
  }
  
  .work-content {
    padding: 1.25rem 1.5rem 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}