/* ================================================
   ABOUT PAGE STYLES – about.css
   ================================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 35, 36, 0.7);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

.page-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb a {
  opacity: 0.8;
  transition: opacity var(--transition);
}

.breadcrumb a:hover { opacity: 1; color: var(--color-gold); }

.breadcrumb .sep { opacity: 0.5; }

.breadcrumb .current { color: var(--color-gold); }

/* ---------- Introduction Section ---------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-intro-images {
  position: relative;
  height: 580px;
}

.intro-img-main {
  width: 85%;
  height: 85%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-img-side {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 48%;
  border-radius: 8px;
  overflow: hidden;
  border: 8px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.intro-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.intro-badge .badge-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.intro-badge .badge-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about-intro-content .about-text {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--color-text-muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 165, 104, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-icon svg { width: 22px; height: 22px; }

.info-details span {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.info-details strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  display: block;
}

/* Stats Bar */
.stats-bar-container {
  background: var(--color-bg-light);
  padding: 60px 0;
  margin-top: 100px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--color-divider);
}

.stat-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.stat-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Vision & Mission ---------- */
.vision-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.vision-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-card {
  background: var(--color-dark-2);
  padding: 50px;
  border-radius: 8px;
  transition: transform var(--transition);
  border: 1px solid var(--color-divider-dk);
}

.vision-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.card-icon {
  font-size: 44px;
  margin-bottom: 24px;
}

.vision-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.vision-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ---------- Unique Spaces ---------- */
.unique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.unique-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unique-content {
  padding: 60px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.unique-content p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* ---------- About Testimonials ---------- */
.about-testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.testimonial-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rating-stars-large {
  color: var(--color-gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-blockquote {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 100px;
  font-family: serif;
  color: var(--color-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-blockquote p {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  background: var(--color-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.author-meta strong {
  display: block;
  font-size: 17px;
}

.author-meta span {
  font-size: 14px;
  color: var(--color-text-muted);
}

.testimonial-footer-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--color-divider);
}

.big-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.stat-stars .stars {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: 4px;
}

.stat-stars span {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---------- Process Steps ---------- */
.process-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.p-step {
  padding: 30px;
  border-left: 2px solid rgba(197, 165, 104, 0.2);
  transition: border var(--transition);
}

.p-step:hover {
  border-left-color: var(--color-gold);
}

.p-icon {
  font-size: 40px;
  font-weight: 800;
  color: rgba(197, 165, 104, 0.3);
  margin-bottom: 20px;
  line-height: 1;
}

.p-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.p-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- FAQ Section ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-lead {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-divider);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.accordion-header:hover { color: var(--color-gold); }

.acc-icon {
  font-size: 24px;
  color: var(--color-gold);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.45s ease,
              opacity 0.35s ease;
  opacity: 0;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  padding-bottom: 24px;
  opacity: 1;
}

.accordion-body p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-visual img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* ---------- Bottom CTA ---------- */
.bottom-stats .section-title {
  max-width: 800px;
  margin: 0 auto 24px;
}

.bottom-lead {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow-label.center {
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-intro-grid,
  .about-testimonials-grid,
  .faq-grid,
  .vision-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .unique-grid {
    grid-template-columns: 1fr;
  }

  .unique-img:nth-child(3) { display: none; }

  .process-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-images { height: 450px; }
}

@media (max-width: 768px) {
  .process-grid-about {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--color-divider);
    padding-bottom: 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   HOVER EFFECTS & TRANSITIONS
   ================================================ */

/* ── Nav links: animated gold underline sweep ── */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ── Header CTA: lift + warm glow ── */
.header-cta {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 104, 0.35) !important;
}

/* ── All buttons: lift + arrow nudge ── */
.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, letter-spacing 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  letter-spacing: 0.03em;
}
.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(197, 165, 104, 0.4);
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* ── Logo: subtle spring scale ── */
.logo {
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover {
  opacity: 1 !important;
  transform: scale(1.03);
}
.logo-icon rect,
.logo-icon path {
  transition: stroke 0.3s ease;
}
.logo:hover .logo-icon rect,
.logo:hover .logo-icon path {
  stroke: #d4b87a;
}

/* ── Breadcrumb link ── */
.breadcrumb a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

/* ── Page hero background: zoom in on load ── */
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.page-hero-bg {
  animation: heroZoom 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ── Hero content: fade up on load ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero-content {
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ── Intro images: zoom on hover ── */
.intro-img-main {
  transition: box-shadow 0.4s ease;
}
.intro-img-main img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.intro-img-main:hover img {
  transform: scale(1.04);
}
.intro-img-side img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.intro-img-side:hover img {
  transform: scale(1.06);
}
.intro-img-main:hover,
.intro-img-side:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* ── Badge: spring scale on hover ── */
.intro-badge {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.intro-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(197, 165, 104, 0.45);
}

/* ── Contact info items: slide right ── */
.contact-info-item {
  transition: transform 0.3s ease;
  cursor: default;
}
.contact-info-item:hover {
  transform: translateX(5px);
}
.info-icon {
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-info-item:hover .info-icon {
  background: rgba(197, 165, 104, 0.22);
  transform: scale(1.12);
}

/* ── Stats bar items: lift + icon bounce ── */
.stat-item {
  transition: transform 0.3s ease;
  cursor: default;
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item:hover .stat-icon {
  transform: scale(1.3) rotate(-5deg);
}

/* ── Vision cards: icon bounce + heading gold ── */
.vision-card .card-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-card:hover .card-icon {
  transform: scale(1.25) rotate(8deg);
}
.vision-card h3 {
  transition: color 0.3s ease;
}
.vision-card:hover h3 {
  color: var(--color-gold);
}

/* ── Unique spaces: image zoom ── */
.unique-img {
  overflow: hidden;
}
.unique-img img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.unique-img:hover img {
  transform: scale(1.06);
}

/* ── Testimonial visual: lift + zoom ── */
.testimonial-visual {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-visual img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: block;
}
.testimonial-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.testimonial-visual:hover img {
  transform: scale(1.04);
}

/* ── Process steps: slide right + number brightens ── */
.p-step {
  transition: border-left-color 0.3s ease,
              background 0.3s ease,
              transform 0.3s ease,
              padding-left 0.3s ease;
  cursor: default;
}
.p-step:hover {
  transform: translateX(6px);
  padding-left: 36px;
  background: rgba(197, 165, 104, 0.04);
}
.p-icon {
  transition: color 0.35s ease, transform 0.35s ease;
}
.p-step:hover .p-icon {
  color: rgba(197, 165, 104, 0.7);
  transform: translateY(-3px) scale(1.08);
}

/* ── Accordion: header slides right on hover ── */
.accordion-header {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.accordion-item:hover .accordion-header {
  padding-left: 8px;
}
.acc-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.accordion-item.active .acc-icon {
  transform: scale(1.2);
}

/* ── FAQ visual: lift + zoom ── */
.faq-visual {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border-radius: 12px;
}
.faq-visual img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: block;
  border-radius: 12px;
}
.faq-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}
.faq-visual:hover img {
  transform: scale(1.04);
}

/* ── Footer links: arrow slides in from left ── */
.footer-nav a,
.footer-portfolio a {
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.footer-nav a::before,
.footer-portfolio a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--color-gold);
  transition: opacity 0.3s ease, left 0.3s ease;
}
.footer-nav a:hover,
.footer-portfolio a:hover {
  padding-left: 20px;
}
.footer-nav a:hover::before,
.footer-portfolio a:hover::before {
  opacity: 1;
  left: 0;
}

/* ── Social links: spring scale + gold glow ── */
.social-link {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease,
              box-shadow 0.3s ease;
  border-radius: 50%;
}
.social-link:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 16px rgba(197, 165, 104, 0.3);
}

/* ── Newsletter button: nudge right ── */
.newsletter-form button {
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.newsletter-form button:hover {
  transform: translateX(3px) scale(1.1);
  box-shadow: 0 4px 16px rgba(197, 165, 104, 0.35);
}

/* ── Eyebrow lines: expand on section hover ── */
.eyebrow-label .eyebrow-line {
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-intro-content:hover .eyebrow-line,
.vision-header:hover .eyebrow-line,
.faq-content:hover .eyebrow-line,
.testimonial-main-content:hover .eyebrow-line,
.process-header:hover .eyebrow-line {
  width: 48px;
}

/* ── Scroll reveal: sections fade up when .is-visible is added ── */
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}