/* ============================================================
   INFO PAGES — Shared styles for FAQ, About, Legal pages
   ============================================================ */

/* === Hero Banner === */
.info-hero {
  position: relative;
  background: linear-gradient(160deg, #3D0A26 0%, #7A1B4E 60%, #5A0F38 100%);
  padding: 80px 20px 50px;
  text-align: center;
  overflow: hidden;
}
.info-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.info-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.info-hero h1 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.info-hero-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold, #C9A84C), var(--gold-light, #D4B65E));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.info-hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.info-hero-breadcrumb a {
  color: var(--gold, #C9A84C);
  text-decoration: none;
  transition: color 0.2s;
}
.info-hero-breadcrumb a:hover {
  color: #D4B65E;
}
.info-hero-breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* === Page Wrapper === */
.info-page {
  background: var(--color-bg, #FFFFFF);
}

/* === Content Container === */
.info-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* === Section Blocks (Legal Pages) === */
.info-section {
  margin-bottom: 48px;
}
.info-section:last-child {
  margin-bottom: 0;
}
.info-section h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  border-left: 3px solid var(--gold, #C9A84C);
  padding-left: 16px;
  margin: 0 0 16px;
  line-height: 1.3;
}
.info-section p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-secondary, #5A3050);
  margin: 0 0 14px;
}
.info-section p:last-child {
  margin-bottom: 0;
}
.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.info-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-secondary, #5A3050);
  margin-bottom: 8px;
}
.info-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  opacity: 0.6;
}
.info-section strong {
  color: var(--color-text, #2D0A1B);
}
.info-effective-date {
  font-size: 13px;
  color: var(--color-text-muted, #7E80B3);
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}

/* === Contact Info Box === */
.info-contact-box {
  background: var(--color-bg-warm, #FDF0F4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 48px;
}
.info-contact-box h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  margin: 0 0 16px;
}
.info-contact-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary, #5A3050);
  margin: 0 0 8px;
}
.info-contact-box a {
  color: var(--gold, #C9A84C);
  text-decoration: none;
  font-weight: 600;
}
.info-contact-box a:hover {
  text-decoration: underline;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.faq-intro {
  text-align: center;
  margin-bottom: 48px;
}
.faq-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary, #5A3050);
  max-width: 560px;
  margin: 0 auto;
}
.info-faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.info-faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.15);
}
.info-faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s;
  line-height: 1.4;
}
.info-faq-q:hover {
  color: var(--primary, #7A1B4E);
}
.info-faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.04);
}
.info-faq-item.active .info-faq-icon {
  transform: rotate(45deg);
  border-color: var(--primary, #7A1B4E);
  color: var(--primary, #7A1B4E);
  background: rgba(122,27,78,0.06);
}
.info-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-faq-a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--color-text-secondary, #5A3050);
  line-height: 1.85;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Intro split */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.about-intro-text h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  margin: 0 0 20px;
  line-height: 1.2;
}
.about-intro-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-secondary, #5A3050);
  margin: 0 0 16px;
}
.about-intro-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(122,27,78,0.12);
}
.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Offices badges */
.about-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.about-office-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
}
.about-office-badge i {
  color: var(--gold, #C9A84C);
}

/* Services grid */
.about-services-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-section-header h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  margin: 0 0 12px;
}
.about-section-header p {
  font-size: 16px;
  color: var(--color-text-secondary, #5A3050);
  max-width: 560px;
  margin: 0 auto;
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-service-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.about-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary, #7A1B4E), var(--gold, #C9A84C));
  opacity: 0;
  transition: opacity 0.3s;
}
.about-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122,27,78,0.1);
  border-color: rgba(201,168,76,0.25);
}
.about-service-card:hover::before {
  opacity: 1;
}
.about-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122,27,78,0.06), rgba(201,168,76,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--primary, #7A1B4E);
}
.about-service-card h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  margin: 0 0 10px;
}
.about-service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary, #5A3050);
  margin: 0 0 12px;
}
.about-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-service-card ul li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--color-text-secondary, #5A3050);
  line-height: 1.7;
  margin-bottom: 4px;
}
.about-service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  opacity: 0.5;
}

/* Industries section */
.about-industries {
  background: var(--color-bg-warm, #FDF0F4);
  padding: 80px 20px;
}
.about-industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.about-industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}
.about-industry-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 16px rgba(122,27,78,0.06);
  transform: translateY(-2px);
}
.about-industry-item i {
  font-size: 20px;
  color: var(--gold, #C9A84C);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-industry-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  display: block;
}
.about-industry-item span {
  font-size: 12px;
  color: var(--color-text-muted, #7E80B3);
  display: block;
  margin-top: 2px;
}

/* Philosophy section */
.about-philosophy {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-philosophy-inner {
  background: linear-gradient(160deg, #3D0A26 0%, #7A1B4E 60%, #5A0F38 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-philosophy-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
}
.about-philosophy-inner h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  position: relative;
}
.about-philosophy-inner p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto 16px;
  position: relative;
}

/* Why Kiano values */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
  position: relative;
}
.about-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.about-value-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.3);
}
.about-value-item i {
  color: var(--gold, #C9A84C);
  font-size: 16px;
  flex-shrink: 0;
}
.about-value-item span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* CTA section */
.about-cta {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}
.about-cta h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  color: var(--color-text, #2D0A1B);
  margin: 0 0 12px;
}
.about-cta p {
  font-size: 16px;
  color: var(--color-text-secondary, #5A3050);
  margin: 0 0 28px;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold, #C9A84C), #D4B65E);
  color: #2D0A1B;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
    padding: 60px 20px 0;
  }
}
@media (min-width: 960px) {
  .info-hero {
    padding: 100px 20px 60px;
  }
  .about-intro {
    padding: 80px 20px 0;
  }
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639px) {
  .info-content {
    padding: 40px 16px 60px;
  }
  .faq-container {
    padding: 40px 16px 60px;
  }
  .info-section h2 {
    font-size: 18px;
  }
  .info-faq-q {
    font-size: 15px;
    padding: 18px 0;
  }
  .about-philosophy-inner {
    padding: 40px 24px;
  }
}
