/* ============================================================
   GRAPHIC DESIGN PAGE — MaMo Technolabs
   Brand gradient: #00C853 → #00BFA5 (green → cyan)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --gd-green:     #00C853;
  --gd-cyan:      #00BFA5;
  --gd-gradient:  linear-gradient(135deg, #00C853 0%, #00BFA5 100%);
  --gd-soft:      #f8fffe;
  --gd-mint:      #f0fdf9;
  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-light:   #6b7280;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.13);
}

/* ── HERO ── */
.gd-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
}
.gd-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(110,242,138,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(78,221,227,0.08) 0%, transparent 70%);
}
.gd-hero .container { width: 100%; }

.gd-hero-content { }

.gd-hero-badge {
  display: inline-block;
  background: var(--gd-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.gd-hero-title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.gd-hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
}

.gd-hero-cta { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats Row */
.gd-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.gd-stat-item {
  position: relative;
}
.gd-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--gd-border, #e5e7eb);
}

.gd-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--gd-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.gd-stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Image */
.gd-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gd-hero-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gd-hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
  background: linear-gradient(135deg, #f0fdf9 0%, #e6fbf5 50%, #ebfcf8 100%);
}

.gd-hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #ffffff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  border: 1px solid rgba(110,242,138,0.25);
  border-radius: var(--radius-md);
  animation: gd-badge-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
}
.gd-hero-img-badge i {
  font-size: 20px;
  color: #00C853;
}

@keyframes gd-badge-pop {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Trusted Banner */
.gd-trusted-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 20px 28px;
  background: var(--gd-soft);
  border: 1px solid rgba(110,242,138,0.25);
  border-radius: var(--radius-md);
}

.gd-trusted-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.gd-trusted-industries {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gd-trusted-industries span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* Buttons */
.gd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gd-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--gd-transition, all 0.35s cubic-bezier(0.4, 0, 0.2, 1));
  box-shadow: 0 8px 24px rgba(110,242,138,0.30);
}
.gd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(110,242,138,0.40);
  color: #ffffff;
}

.gd-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid #e5e7eb;
  transition: var(--gd-transition, all 0.35s cubic-bezier(0.4, 0, 0.2, 1));
}
.gd-btn-secondary:hover {
  border-color: var(--gd-green);
  color: #0a7040;
  background: var(--gd-mint);
  transform: translateY(-2px);
}

/* ── CLIENTS ── */
.gd-clients-section { padding: 10px 0 40px; }

/* ── SHARED SECTION STYLES ── */
.gd-section-badge {
  display: inline-block;
  background: var(--gd-gradient);
  color: #ffffff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 16px;
}
.gd-what-header, .gd-section-center-header {
  text-align: center;
  max-width: 760px; margin: 0 auto 50px;
}
.gd-section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.25; margin: 0 0 14px;
}
.gd-section-desc, .gd-section-subtitle {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.75; margin: 0 0 12px;
}

/* ── WHAT WE DO ── */
.gd-what { padding: 90px 0; background: var(--gd-soft); }
.gd-what-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 50px;
}
.gd-what-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gd-what-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gd-what-icon {
  width: 56px; height: 56px;
  background: var(--gd-gradient);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 22px; color: #fff;
}
.gd-what-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0 0 10px; }
.gd-what-card p  { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.65; }

/* ── SERVICES ── */
.gd-services { padding: 90px 0; background: #fff; }
.gd-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.gd-service-card {
  background: #fff; border: 1.5px solid #e8f5ee;
  border-radius: var(--radius-md); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gd-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(110,242,138,0.4);
}
.gd-service-icon {
  width: 52px; height: 52px;
  background: var(--gd-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
}
.gd-service-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0 0 10px; }
.gd-service-desc  { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0 0 18px; }
.gd-service-tags  { display: flex; gap: 8px; flex-wrap: wrap; }
.gd-tag {
  font-size: 11px; font-weight: 600; color: #00a860;
  background: rgba(110,242,138,0.12);
  padding: 4px 10px; border-radius: 50px;
}

/* ── PROCESS ── */
.gd-process { padding: 90px 0; background: var(--gd-soft); }
.gd-process-timeline {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.gd-process-timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, #00C853, #00BFA5);
  border-radius: 2px;
}
.gd-process-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; position: relative;
}
.gd-process-num {
  width: 58px; height: 58px; flex-shrink: 0;
  background: var(--gd-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 14px rgba(110,242,138,0.35);
  position: relative; z-index: 1;
}
.gd-process-content { padding-top: 12px; }
.gd-process-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0 0 8px; }
.gd-process-content p  { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ── WHY CHOOSE ── */
.gd-why { padding: 90px 0; background: #fff; }
.gd-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 50px;
}
.gd-why-card {
  background: var(--gd-soft); border-radius: var(--radius-md);
  padding: 30px 26px; text-align: center;
  transition: transform 0.3s ease;
}
.gd-why-card:hover { transform: translateY(-4px); }
.gd-why-icon {
  width: 52px; height: 52px;
  background: var(--gd-gradient); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  margin: 0 auto 16px;
}
.gd-why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0 0 10px; }
.gd-why-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ── FAQ ── */
.gd-faq { padding: 90px 0; background: var(--gd-soft); }
.gd-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.gd-faq-item {
  background: #fff; border-radius: var(--radius-md);
  border: 1.5px solid #e5e7eb; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gd-faq-item.active { 
  border-color: rgba(110,242,138,0.45); 
  box-shadow: var(--shadow-sm);
}
.gd-faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  text-align: left; gap: 16px;
}
.gd-faq-question i { color: #00a860; transition: transform 0.3s ease; flex-shrink: 0; }
.gd-faq-item.active .gd-faq-question i { transform: rotate(180deg); }
.gd-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.gd-faq-answer-content { padding: 0 24px 20px; font-size: 0.93rem; color: var(--text-light); line-height: 1.75; }

/* ── CTA ── */
.gd-cta {
  padding: 90px 0;
  background: var(--gd-gradient);
}
.gd-cta-inner { text-align: center; }
.gd-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: #fff; margin: 0 0 12px;
}
.gd-cta-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.85);
  margin: 0 0 32px; max-width: 540px; margin-left: auto; margin-right: auto;
}
.gd-cta .gd-btn-primary {
  background: #fff; color: #00a860;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.gd-cta .gd-btn-primary:hover { background: var(--gd-mint); color: #00a860; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .gd-hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .gd-hero-image { margin-top: 48px; }
  .gd-trusted-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gd-services-grid, .gd-why-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-what-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .gd-hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  .gd-hero-subtitle { margin: 0 auto 32px; }
  .gd-hero-cta { justify-content: center; }
  .gd-hero-stats {
    justify-content: center;
    gap: 28px;
  }
  .gd-stat-item:not(:last-child)::after { display: none; }

  /* Hero image — full width, natural height */
  .gd-hero-image {
    margin-top: 40px;
    justify-content: center;
  }
  .gd-hero-img-wrap {
    width: 100%;
    max-width: 100%;
  }
  .gd-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 16px;
  }
  /* Badge — keep it inside the image on mobile */
  .gd-hero-img-badge {
    left: 12px;
    bottom: 16px;
    font-size: 12px;
    padding: 8px 14px;
  }
  .gd-hero-img-badge i { font-size: 16px; }

  .gd-services-grid, .gd-why-grid, .gd-what-grid { grid-template-columns: 1fr; }
  .gd-process-timeline::before { display: none; }
}
@media (max-width: 480px) {
  .gd-hero-stats { gap: 20px; }
  .gd-stat-number { font-size: 28px; }
  .gd-btn-primary,
  .gd-btn-secondary { padding: 12px 24px; font-size: 14px; }
  .gd-hero-title { font-size: 2rem; }
  .gd-hero-cta { flex-direction: column; }
  .gd-btn-primary, .gd-btn-secondary { width: 100%; justify-content: center; }
  .gd-service-card,
  .gd-why-card,
  .gd-what-card { padding: 28px 20px; }

  .gd-hero-img {
    height: auto;
    aspect-ratio: 16/10;
  }
  .gd-hero-img-badge {
    left: 8px;
    bottom: 12px;
    font-size: 11px;
    padding: 7px 12px;
    gap: 7px;
  }
}
