/* Gallery Styles -The Designer Bridge Style */
:root {
  --primary: #1b9db1;
  --primary-dark: #138294;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --light: #f5f7f8;
  --accent: #ff8a00;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Main Content */
.main-content {
  padding: 60px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
}

.page-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Filter Buttons */
.filter-section {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Design Card */
.design-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.design-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.design-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.design-content {
  padding: 20px;
}

.design-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--text);
  line-height: 1.4;
}

.design-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.btn-quote {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-quote:hover {
  background: var(--primary-dark);
}

.explore-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
  text-decoration: none;
}

.explore-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Promotional Banner */
.promo-banner-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.promo-banner-card h3 {
  font-size: 22px;
  margin: 0 0 15px;
  line-height: 1.3;
}

.promo-banner-card p {
  font-size: 14px;
  margin: 0 0 20px;
  opacity: 0.9;
}

.promo-banner-card .btn {
  background: #f04a4a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
}

.promo-banner-card .btn:hover {
  background: #d63939;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin: 50px 0;
}

.results-count {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.btn-load-more {
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
}

.btn-load-more:hover {
  background: var(--primary-dark);
}

/* FAQ Section */
.faq-section {
  background: var(--light);
  padding: 80px 0;
  margin-top: 60px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px;
  color: var(--text);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--light);
}

.faq-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-top: 10px;
}

/* Footer CTA */
.footer-cta {
  background: #2d2d2d;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.footer-cta h2 {
  font-size: 32px;
  margin: 0 0 30px;
}

.footer-cta .btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.footer-cta .btn:hover {
  background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .faq-title {
    font-size: 28px;
  }
}
