/* ==============================================
   MAIDAM GOLD - SHARED PAGE STYLES
   Bright & Professional Theme
   ============================================== */

/* ========================
   PRODUCT FILTER TABS
   ======================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 12px 28px;
  border: 2px solid var(--border-light);
  border-radius: 100px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.active {
  background: var(--gold-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(197, 150, 12, 0.3);
}

/* ========================
   PRODUCT PRICE
   ======================== */
.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-price small {
  font-size: 0.7em;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ========================
   PRICE NOTE
   ======================== */
.price-note {
  background: var(--gold-lighter);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.price-note i {
  color: var(--gold);
  font-size: 18px;
}

.price-note p {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* ========================
   TWO-COLUMN LAYOUT
   ======================== */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ========================
   INFO CARD
   ======================== */
.info-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 120px;
}

.info-card h3 {
  margin-bottom: 28px;
  font-size: 1.3rem;
}

.info-card-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-card-item:last-child {
  margin-bottom: 0;
}

.info-card-icon {
  min-width: 44px;
  height: 44px;
  background: var(--gold-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.info-card-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

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

/* ========================
   CONTACT CARDS
   ======================== */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.contact-card-icon {
  min-width: 52px;
  height: 52px;
  background: var(--gold-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.contact-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================
   HOURS TABLE
   ======================== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.hours-table .closed {
  color: var(--error);
}

/* ========================
   MAP PLACEHOLDER
   ======================== */
.map-placeholder {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
}

.map-placeholder p {
  font-size: 14px;
}

/* ========================
   TIMELINE / STEPS
   ======================== */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 72px;
  height: 72px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(197, 150, 12, 0.3);
}

.timeline-item h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.timeline-item p {
  font-size: 13px;
  line-height: 1.6;
}

/* ========================
   SHOWCASE CARDS
   ======================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-card);
}

.showcase-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.showcase-card-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-lighter);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
}

.showcase-card:hover .showcase-card-icon {
  background: var(--gold-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(197, 150, 12, 0.3);
}

.showcase-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.showcase-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ========================
   VISION/MISSION CARDS
   ======================== */
.vm-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.vm-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-lighter);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}

.vm-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ========================
   ABOUT VISUAL CARD
   ======================== */
.about-visual {
  background: var(--gold-gradient);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-gold-lg);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.about-visual .logo-mark-lg {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  position: relative;
}

.about-visual h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 8px;
  position: relative;
}

.about-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  position: relative;
}

/* ========================
   FAQ ACCORDION
   ======================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-question i {
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background: var(--gold-lighter);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========================
   FORM CARD
   ======================== */
.form-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.form-card > p {
  margin-bottom: 32px;
  font-size: 14px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-equal { grid-template-columns: 1fr; gap: 40px; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .info-card { position: static; }
}

@media (max-width: 768px) {
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 10px 20px; font-size: 12px; }
  .form-card { padding: 32px 24px; }
  .info-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .timeline-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
