/* ===== PAGE HERO (GET QUOTE) ===== */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Background image */
.get-quote-hero {
  background-image: url("../images/printing-hero.jpg"); 
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 850px;
  margin: auto;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* ================================
   WHY GET QUOTE FROM US
================================ */

.why-quote {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.why-quote .section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-quote .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.why-quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-quote-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-quote-card i {
  font-size: 36px;
  color: #ffb400;
  margin-bottom: 15px;
}

.why-quote-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-quote-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.why-quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .why-quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-quote-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   PRINTING CATEGORY SELECTION
================================ */

.quote-category {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.quote-category .section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.quote-category .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-option {
  cursor: pointer;
}

.category-option input {
  display: none;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  background: #f9f9f9;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.category-card i {
  font-size: 32px;
  color: #ffb400;
  margin-bottom: 10px;
}

.category-card strong {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

/* Selected State */
.category-option input:checked + .category-card {
  border-color: #ffb400;
  background: #fff7e0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hover */
.category-option:hover .category-card {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}



.category-card-link {
  text-decoration: none;
  color: inherit;
}

.category-card-link .category-card {
  height: 150px;
  background: #f9f9f9;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card-link:hover .category-card {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  background: #fff7e0;
}


/* ================================
   QUOTE REQUEST FORM
================================ */

.quote-form-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.quote-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 35px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.quote-form textarea {
  margin-top: 15px;
  resize: vertical;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
  font-size: 14px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 25px;
  }
}
/* ================================
   THANK YOU POPUP
================================ */

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-box {
  background: #ffffff;
  padding: 35px 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 16px;
  text-align: center;
  position: relative;
  animation: popupScale 0.3s ease;
}

@keyframes popupScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.thankyou-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.thankyou-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.thankyou-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* ================================
   INSTANT CONTACT OPTIONS
================================ */

.instant-contact {
  padding: 60px 0;
  background: #fff7e0;
  text-align: center;
}

.instant-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.instant-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.instant-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.instant-btn {
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Button Colors */
.call-btn {
  background: #0d6efd;
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.email-btn {
  background: #444;
  color: #fff;
}

.instant-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ================================
   STICKY WHATSAPP (MOBILE)
================================ */

.sticky-whatsapp {
  display: none;
}

@media (max-width: 768px) {
  .sticky-whatsapp {
    display: flex;
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }
}

/* ================================
   SAMPLE PRICING
================================ */

.sample-pricing {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.sample-pricing .section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.pricing-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 14px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.pricing-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 16px;
  color: #333;
}

.pricing-card .price span {
  font-size: 20px;
  font-weight: 800;
  color: #ffb400;
}

.pricing-card:hover {
  border-color: #ffb400;
  transform: translateY(-5px);
}

.pricing-note {
  margin-top: 25px;
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   OUR PRINTING PROCESS
================================ */

.printing-process {
  padding: 90px 0;
  background: #f9f9f9;
  text-align: center;
}

.printing-process .section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb400;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step i {
  font-size: 36px;
  color: #ffb400;
  margin: 20px 0 15px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   WHY CHOOSE US
================================ */

.why-choose-us {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.why-choose-us .section-subtitle {
  color: #666;
  margin-bottom: 45px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.choose-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.choose-card i {
  font-size: 34px;
  color: #ffb400;
  margin-bottom: 15px;
}

.choose-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.choose-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.choose-card:hover {
  background: #fff7e0;
  border-color: #ffb400;
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   GALLERY PREVIEW (SMALL)
================================ */

.gallery-preview-small {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.gallery-preview-small .section-subtitle {
  color: #666;
  margin-bottom: 35px;
}

.gallery-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.gallery-grid-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-small img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gallery-cta {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid-small {
    grid-template-columns: 1fr;
  }

  .gallery-grid-small img {
    height: 220px;
  }
}
.reviews-section {
  background: #f9f9f9;
  padding: 60px 20px;
  overflow: hidden;
  text-align: center;
}

.reviews-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtext {
  color: #666;
  margin-bottom: 30px;
}

.review-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 40s linear infinite;
}

.review-slider:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.stars {
  color: #D4AF37; /* Gold */
  font-size: 20px;
  margin-bottom: 8px;
}

.review-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.review-card h4 {
  font-size: 15px;
  margin: 0;
}

.review-card span {
  font-size: 12px;
  color: #777;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ================================
   FAQ SECTION
================================ */

.faq-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.faq-section .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  color: #ffb400;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ================================
   FINAL CTA
================================ */

.final-cta {
  position: relative;
  padding: 80px 0;
  background: url("../images/printing-cta-bg.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 34px;
  font-weight: 800;
  max-width: 850px;
  margin: auto;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 26px;
  }
}

/* ================================
   SEO FOOTER CONTENT – CLEAN STYLE
================================ */

.seo-footer-content {
  border-top: 1px solid #eaeaea;
  padding: 14px 10px;
  background: #ffffff;
}

.seo-footer-content p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #777;
  text-align: center;
}

.seo-footer-content strong {
  font-weight: 600;
  color: #555;
}
