/* ==========================================================================
   ZADVEOKA PAGES — About Us, FAQ, Contact Us
   ========================================================================== */

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

/* Story Section (image + text grid) */
.zad-about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.zad-about-story-img { border-radius: 16px; overflow: hidden; }
.zad-about-story-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.zad-about-story-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); letter-spacing: -.5px; margin-bottom: 20px;
}
.zad-about-story-text p {
  font-size: .95rem; color: var(--z-text-muted); line-height: 1.8; margin-bottom: 16px;
}

/* Values Grid */
.zad-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.zad-value-card {
  text-align: center; padding: 48px 32px; background: var(--z-white);
  border-radius: var(--z-radius); transition: var(--z-transition);
  border: 1px solid rgba(0,0,0,.04);
}
.zad-value-card:hover {
  transform: translateY(-6px); box-shadow: var(--z-shadow-md);
}
.zad-value-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--z-surface-cool); border-radius: 14px; color: var(--z-primary);
}
.zad-value-icon svg { width: 28px; height: 28px; }
.zad-value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.zad-value-card p { font-size: .9rem; color: var(--z-text-muted); line-height: 1.7; }

/* Why Choose Section (reversed grid) */
.zad-about-why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zad-about-why-img { border-radius: 16px; overflow: hidden; }
.zad-about-why-img img { width: 100%; height: auto; min-height: 400px; object-fit: cover; }
.zad-about-why-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); letter-spacing: -.5px; margin-bottom: 20px;
}
.zad-about-why-text p { font-size: .95rem; color: var(--z-text-muted); line-height: 1.8; margin-bottom: 16px; }
.zad-about-why-text ul { list-style: none; padding: 0; }
.zad-about-why-text ul li {
  padding: 8px 0; font-size: .95rem; color: var(--z-text-muted);
  display: flex; align-items: center; gap: 10px;
}
.zad-about-why-text ul li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; font-size: 12px; font-weight: 700;
  background: rgba(16,185,129,.1); color: var(--z-success); border-radius: 50%; flex-shrink: 0;
}

/* CTA Section */
.zad-about-cta {
  text-align: center; padding: 100px 0;
  background: linear-gradient(160deg, var(--z-primary-darker), var(--z-primary-dark));
}
.zad-about-cta h2 { color: var(--z-white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.zad-about-cta p { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* =========================
   FAQ
   ========================= */

/* Category Tabs */
.zad-faq-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 48px;
}
.zad-faq-tab {
  padding: 10px 22px; font-size: 13px; font-weight: 600; font-family: var(--z-font);
  border: 1.5px solid var(--z-border); border-radius: 50px;
  color: var(--z-text-muted); background: var(--z-white);
  cursor: pointer; transition: var(--z-transition);
}
.zad-faq-tab:hover { border-color: var(--z-primary); color: var(--z-primary); }
.zad-faq-tab.active { background: var(--z-primary); color: var(--z-white); border-color: var(--z-primary); }

/* Accordion */
.zad-faq-accordion { max-width: 800px; margin: 0 auto; }
.zad-faq-item {
  border-bottom: 1px solid var(--z-border);
}
.zad-faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; gap: 16px;
  font-size: 1rem; font-weight: 600; color: var(--z-text);
  transition: var(--z-transition);
}
.zad-faq-question:hover { color: var(--z-primary); }
.zad-faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s ease;
  color: var(--z-text-light);
}
.zad-faq-item.open .zad-faq-chevron { transform: rotate(180deg); color: var(--z-primary); }
.zad-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.zad-faq-answer-inner {
  padding: 0 0 22px; font-size: .95rem; color: var(--z-text-muted); line-height: 1.8;
}

/* =========================
   CONTACT US
   ========================= */

.zad-contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: flex-start;
}

/* Contact Form */
.zad-contact-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.zad-form-group { margin-bottom: 20px; }
.zad-form-label {
  display: block; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--z-text); margin-bottom: 8px;
}
.zad-form-input, .zad-form-select, .zad-form-textarea {
  width: 100%; padding: 14px 18px; font-size: 14px; font-family: var(--z-font);
  border: 1.5px solid var(--z-border); border-radius: var(--z-radius-xs);
  background: var(--z-white); color: var(--z-text); transition: var(--z-transition);
}
.zad-form-input:focus, .zad-form-select:focus, .zad-form-textarea:focus {
  border-color: var(--z-primary); outline: none; box-shadow: 0 0 0 3px rgba(40,64,134,.08);
}
.zad-form-textarea { min-height: 140px; resize: vertical; }
.zad-form-select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

/* Contact Info */
.zad-contact-info {
  background: var(--z-surface-cool); border-radius: var(--z-radius);
  padding: 40px 36px;
}
.zad-contact-info h3 { font-size: 1.3rem; margin-bottom: 28px; }
.zad-info-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px;
}
.zad-info-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--z-white); border-radius: 10px; color: var(--z-primary); flex-shrink: 0;
  box-shadow: var(--z-shadow-xs);
}
.zad-info-icon svg { width: 18px; height: 18px; }
.zad-info-item h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.zad-info-item p { font-size: .9rem; color: var(--z-text-muted); line-height: 1.6; }
.zad-info-item a { color: var(--z-primary); }
.zad-info-item a:hover { text-decoration: underline; }

/* Social Links */
.zad-social-links { display: flex; gap: 12px; margin-top: 8px; }
.zad-social-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--z-white); color: var(--z-text-muted);
  transition: var(--z-transition); box-shadow: var(--z-shadow-xs);
}
.zad-social-link:hover { color: var(--z-primary); transform: translateY(-2px); box-shadow: var(--z-shadow-sm); }
.zad-social-link svg { width: 18px; height: 18px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .zad-about-story, .zad-about-why { grid-template-columns: 1fr; gap: 40px; }
  .zad-contact-grid { grid-template-columns: 1fr; }
  .zad-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .zad-values-grid { grid-template-columns: 1fr; gap: 20px; }
  .zad-value-card { padding: 32px 24px; }
  .zad-faq-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .zad-about-cta { padding: 64px 0; }
}
