/* ============================
   Graphic Design Page Stylesheet
   (Ben Franklin Print Co.)
   ============================ */

:root {
  --brand-primary: #284735;
  --brand-dark: #1B3B2B;
  --brand-gold: #C89B3C;
  --brand-gold-light: #D4AF37;
  --brand-bg-light: #F7F9F7;
  --brand-border: #E2E8E4;
}

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

.gde-page {
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.gde-page h1,
.gde-page h2,
.gde-page h3,
.gde-page h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.gold-script {
  font-family: 'Great Vibes', cursive;
  color: var(--brand-gold);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

/* ---- Hero Section ---- */
.gde-hero {
  background-color: #FAFCFA;
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.gde-hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#d3ded6 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.gde-hero-title {
  font-size: 4.8rem;
  line-height: 0.95;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.gde-hero-sub {
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Hero Badge Icons */
.hero-badge-item {
  text-align: center;
}

.hero-badge-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--brand-dark);
  background-color: #fff;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-badge-item:hover .hero-badge-circle {
  transform: translateY(-3px);
  background-color: var(--brand-dark);
  color: #fff;
}

.hero-badge-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.hero-badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
}

/* Hero Right Image */
.gde-hero-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gde-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gde-hero-img-wrapper:hover .gde-hero-img {
  transform: scale(1.02);
}

/* ---- Middle 3-Card Feature Section ---- */
.gde-features-section {
  background-color: #F4F6F4;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.feature-card-item {
  background-color: transparent;
  padding: 1.5rem 1rem;
  height: 100%;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(27, 59, 43, 0.2);
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

/* ---- Services We Offer Grid ---- */
.gde-offer-section {
  background-color: #ffffff;
}

.section-divider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gold-line {
  height: 2px;
  width: 80px;
  background-color: var(--brand-gold);
  display: inline-block;
}

.section-divider-title h2 {
  font-size: 2.8rem;
  color: var(--brand-dark);
  letter-spacing: 1px;
  margin: 0;
}

/* Offer Card */
.offer-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.offer-img-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-color: #eee;
  position: relative;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-img {
  transform: scale(1.05);
}

.offer-label {
  background-color: #ffffff;
  padding: 0.85rem 1rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.offer-label h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--brand-dark);
  letter-spacing: 1px;
  margin: 0;
}

/* ---- Ready Banner CTA Section ---- */
.gde-cta-banner {
  background-color: var(--brand-dark);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

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

.gde-mascot-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gde-cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.gde-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

.btn-gold-quote {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-gold-quote:hover {
  background-color: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(200, 155, 60, 0.4);
}

.gde-ready-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 991.98px) {
  .gde-hero-title {
    font-size: 3.5rem;
  }

  .section-divider-title h2 {
    font-size: 2.2rem;
  }

  .gold-line {
    width: 40px;
  }

  .gde-cta-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .gde-hero-title {
    font-size: 2.8rem;
  }

  .gold-script {
    font-size: 1.8rem;
  }

  .section-divider-title h2 {
    font-size: 1.8rem;
  }

  .gold-line {
    display: none;
  }
}
.section-header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}

.section-header-accent .line {
  height: 1px;
  width: 50px;
  background-color: var(--brand-gold);
}

.section-header-accent .text {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--brand-gold);
}
/* ---- CTA Banner ---- */
.sp-cta-banner {
  background-color: var(--brand-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sp-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
}
.btn-brand-gold {
  background-color: var(--brand-gold);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-brand-gold:hover {
  background-color: var(--brand-gold-light);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
}
.gold-script {
  font-family: 'Great Vibes', cursive;
  color: var(--brand-gold);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .gold-script {
    font-size: 1.8rem;
  }
}
/* ---- Bottom Trust Badges ---- */
.sp-trust-section {
  background-color: #ffffff;
  border-top: 1px solid var(--brand-border);
}

.trust-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.trust-badge-icon svg {

  fill: currentColor;
}

.trust-badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 0.82rem;
  color: #666666;
  margin-bottom: 0;
}