/* ============================================================
   ABOUT PAGE - PROFESSIONAL DESIGN
   Matching Swastik Interior Theme
   ============================================================ */

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero-about {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}

.page-hero-about .hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, rgba(191,155,78,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(232,221,208,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-about .hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(191,155,78,0.15);
  animation: floatY 8s ease-in-out infinite;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s var(--ease) both;
}

.page-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191,155,78,0.1);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(191,155,78,0.25);
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.page-hero-content > p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.breadcrumb-about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.breadcrumb-about a {
  color: var(--text-mid);
  transition: color var(--t3);
}

.breadcrumb-about a:hover {
  color: var(--gold);
}

.breadcrumb-about span:last-child {
  color: var(--gold);
}

/* ============================================================
   OUR STORY SECTION
   ============================================================ */
.about-story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
}

.story-image {
  position: relative;
  padding-top: 40px;
}

.image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: var(--sand);
  aspect-ratio: 3 / 4;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--sand);
  opacity: 1;
  border-radius: 0;
  bottom: -20px;
  left: -20px;
  z-index: -1;
}

.story-content {
  max-width: 100%;
  padding-top: 0;
}

.story-content .section-tag {
  display: none;
}

.story-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: var(--font-heading);
}

.story-content h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.story-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 400;
}

.story-signature {
  display: none;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(191,155,78,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(191,155,78,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(191,155,78,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(191,155,78,0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
  color: var(--gold);
}

.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.value-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.4s var(--ease);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(191,155,78,0.3);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.value-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   PROCESS SECTION - CARD BASED DESIGN
   ============================================================ */
.process-section {
  background: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 48px 60px;
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.process-step:not(:last-child) {
  margin-bottom: -1px;
}

.step-number {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(191,155,78,0.3);
  z-index: 3;
  transition: all 0.4s var(--ease);
  border: 4px solid var(--white);
}

.process-step:hover .step-number {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(191,155,78,0.4);
}

.step-content {
  text-align: center;
  padding-top: 20px;
}

.step-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.step-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
  max-width: 560px;
}

.why-content .section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-content h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.why-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.why-item i {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 4px;
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visual-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}

.visual-card:hover img {
  transform: scale(1.05);
}

.visual-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 8px;
  top: -30px;
  left: -30px;
  z-index: -1;
}

/* ============================================================
   BEFORE & AFTER SHOWCASE SECTION
   ============================================================ */
.before-after-section {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.before-after-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.before-after-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--gold);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  height: 280px;
  overflow: hidden;
}

.ba-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.before-after-card:hover .ba-image img {
  transform: scale(1.1);
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(28,25,23,0.85);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.ba-image.after .ba-label {
  background: rgba(191,155,78,0.9);
}

.ba-content {
  padding: 28px 24px;
}

.ba-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.ba-content p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.ba-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.ba-meta span i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-about {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(191,155,78,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(191,155,78,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.cta-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1200px) {
  .story-grid {
    grid-template-columns: 350px 1fr;
    gap: 60px;
  }
}

@media (max-width: 968px) {
  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-grid {
    gap: 50px;
  }

  .story-image {
    max-width: 100%;
    padding-top: 0;
  }

  .image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .image-accent {
    width: 100%;
    height: 100%;
  }

  .story-content {
    text-align: left;
  }

  .story-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
    top: -35px;
  }

  .process-step {
    padding: 50px 40px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .why-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-hero-about {
    padding: 120px 0 60px;
    min-height: 50vh;
  }

  .page-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .section-padding {
    padding: 80px 0;
  }

  .stats-section {
    padding: 60px 0;
  }

  .cta-about {
    padding: 80px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    padding: 36px 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .story-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 30px;
  }

  .story-content p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .image-wrapper {
    max-width: 100%;
  }

  .process-step {
    padding: 50px 30px 30px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .before-after-images {
    height: 240px;
  }

  .ba-content {
    padding: 24px 20px;
  }

  .ba-content h3 {
    font-size: 1.2rem;
  }

  .ba-meta {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .story-grid {
    gap: 40px;
  }

  .story-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 24px;
  }

  .story-content p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .process-step {
    padding: 50px 24px 30px;
  }

  .why-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .why-item i {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .before-after-images {
    height: 200px;
  }

  .ba-label {
    font-size: 0.65rem;
    padding: 5px 12px;
    top: 12px;
    left: 12px;
  }

  .ba-content h3 {
    font-size: 1.1rem;
  }

  .ba-content p {
    font-size: 0.85rem;
  }

  .ba-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .page-hero-content .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-hero-content > p {
    font-size: 1rem;
  }

  .process-timeline::before {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    padding: 50px 20px 30px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    top: -30px;
  }

  .step-content {
    text-align: center;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .story-content,
  .why-content {
    max-width: 100%;
  }

  .story-content h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.3;
  }

  .story-content p {
    font-size: 0.85rem;
    line-height: 1.75;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .value-card {
    padding: 32px 24px;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .value-card p {
    font-size: 0.88rem;
  }

  .why-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .why-intro {
    font-size: 0.95rem;
  }

  .why-item h4 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: 0.88rem;
  }

  .cta-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .cta-content > p {
    font-size: 1rem;
  }

  .before-after-grid {
    gap: 24px;
  }

  .before-after-images {
    height: 180px;
  }

  .ba-content {
    padding: 20px 16px;
  }

  .ba-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .ba-content p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .ba-meta span {
    font-size: 0.75rem;
  }
}
