/* Page Specific Styles */

/* Hero Section (Home) - Immersive Redesign */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../assets/images/hero_image_new.png'); /* Reusing existing high-quality asset */
  background-size: cover;
  background-position: center;
  transform: scale(1.05); /* Slight scale for parallax effect */
  animation: slowZoom 20s infinite alternate linear;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* Dark gradient to ensure text readability while keeping the image vibrant */
  background: linear-gradient(135deg, rgba(20, 10, 10, 0.9) 0%, rgba(20, 10, 10, 0.4) 50%, rgba(179, 27, 27, 0.2) 100%);
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-glass-card {
  background: rgba(253, 251, 247, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem;
  border-radius: 30px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(179, 27, 27, 0.2);
  border: 1px solid rgba(179, 27, 27, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-red);
  animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
  0% { box-shadow: 0 0 0 0 rgba(179, 27, 27, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(179, 27, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(179, 27, 27, 0); }
}

.hero-dynamic-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 650px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-magnetic {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary-glow {
  background: var(--primary-red);
  color: white;
  box-shadow: 0 0 20px rgba(179, 27, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary-glow:hover {
  box-shadow: 0 0 30px rgba(179, 27, 27, 0.7);
  transform: translateY(-3px);
  color: white;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

.hero-trust-indicators {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  width: 100%;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.trust-icon {
  width: 35px;
  height: 35px;
  background: rgba(179, 27, 27, 0.2);
  border: 1px solid rgba(179, 27, 27, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-red);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  display: block;
  margin: 0 auto 0.5rem;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

.floating-3d {
  animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Typing Effect cursor */
.typing-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 992px) {
  .hero-glass-card {
    padding: 3rem 2rem;
  }
  .hero-dynamic-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

/* Features/Benefits Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
  border: 1px solid var(--border-light);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-orange);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(179, 27, 27, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* About Page */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--text-dark);
  color: white;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* About Page - Editorial Redesign */
.story-editorial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.story-editorial-text {
  position: relative;
  z-index: 2;
  padding: 3.5rem;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
  margin-right: -5rem; /* Overlap the image */
}

.editorial-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.editorial-drop-cap {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.drop-cap {
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
  font-family: var(--font-secondary);
  color: var(--primary-red);
}

.editorial-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.editorial-quote-card {
  margin-top: 3rem;
  background: rgba(253, 251, 247, 0.9);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 5px solid var(--primary-red);
  position: relative;
}

.quote-icon-bg {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(179, 27, 27, 0.05);
}

.editorial-quote-card p {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-red);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.story-editorial-image-wrapper {
  position: relative;
  border-radius: 30px;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.breathing-image {
  animation: slowBreath 15s ease-in-out infinite alternate;
}

@keyframes slowBreath {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.image-accent-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px dashed var(--primary-red);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Reviews Page */
.reviews-masonry {
  column-count: 3;
  column-gap: 2rem;
}

@media (max-width: 992px) {
  .reviews-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .reviews-masonry {
    column-count: 1;
  }
}

.review-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  break-inside: avoid;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(179, 27, 27, 0.05);
  line-height: 1;
}

.stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.review-tag {
  display: inline-block;
  background: var(--bg-cream);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.review-tag i {
  color: var(--secondary-orange);
  margin-right: 0.3rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-red);
}

/* FAQ Page - Innovative Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.faq-search {
  position: relative;
  margin-bottom: 2rem;
}

.faq-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.faq-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-cream);
  transition: all var(--transition-fast);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(179, 27, 27, 0.1);
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-cat-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-cat-btn:hover {
  background: var(--bg-cream);
  color: var(--primary-red);
}

.faq-cat-btn.active {
  background: var(--primary-red);
  color: white;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  /* Removed overflow: hidden to allow 3D glow-card pop out */
  transition: all 0.3s ease;
}

.faq-item.glow-card > * {
  transform: translateZ(10px); /* Subtle 3D effect */
  background: var(--bg-white); /* Ensure background is solid during tilt */
  border-radius: 16px;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color var(--transition-fast);
  border-radius: 16px;
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.26, 1.55);
  background: var(--bg-cream);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-red);
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
  background: var(--primary-red);
  color: white;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease, opacity 0.4s ease;
  color: var(--text-light);
  opacity: 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 400px;
  opacity: 1;
}

/* Animations for FAQ filtering */
.faq-item.hidden {
  display: none;
}

.faq-item.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--primary-red);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-info-item h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

/* Success Page */
.success-container {
  text-align: center;
  max-width: 600px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--accent-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: pulse 2s infinite;
}

/* ═══════════════════ PAGES RESPONSIVE ═══════════════════ */

@media (max-width: 992px) {
  /* Hero */
  .hero-immersive {
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  }

  .hero-glass-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }

  .hero-dynamic-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Grids to single column */
  .hero .container, .story-editorial-layout, .contact-grid, .faq-layout {
    grid-template-columns: 1fr;
  }

  .story-editorial-text {
    margin-right: 0;
    margin-bottom: -3rem;
    padding: 2.5rem;
  }

  /* Page Header */
  .page-header {
    padding: 7rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  /* FAQ */
  .faq-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .faq-categories {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-cat-btn {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
    justify-content: center;
  }

  .faq-cat-btn i {
    display: none;
  }

  /* Contact */
  .contact-info-card {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Hero actions */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-trust-indicators {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-immersive {
    min-height: auto;
    padding: calc(var(--nav-height) + 1rem) 1rem 2rem;
  }

  .hero-glass-card {
    padding: 2rem 1.5rem;
  }

  .hero-dynamic-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    letter-spacing: 1px;
  }

  .btn-magnetic {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .trust-icon {
    width: 30px;
    height: 30px;
  }

  /* Page Header */
  .page-header {
    padding: 6rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* About Editorial */
  .editorial-title {
    font-size: 2.2rem;
  }

  .story-editorial-text {
    padding: 1.8rem;
  }

  .editorial-quote-card {
    padding: 1.5rem;
  }

  .editorial-quote-card p {
    font-size: 1.05rem;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .faq-cat-btn {
    flex: 1 1 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  /* Contact */
  .contact-grid {
    gap: 2rem;
  }

  .contact-info-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 12px;
  }

  /* Features / Core Values */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  /* Reviews */
  .reviews-masonry {
    column-count: 1;
  }

  .review-card {
    padding: 1.5rem;
  }

  /* Checkout */
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-form-section, .order-summary-section {
    padding: 1.5rem;
  }

  /* Success */
  .success-container {
    margin: 2rem auto;
    padding: 2.5rem 1.5rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-dynamic-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .editorial-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

/* Checkout Form Styles Update */
#checkout-form .form-control {
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* IMMERSIVE ABOUT HERO                                                  */
/* ═══════════════════════════════════════════════════════════════════════ */

.about-hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
}

/* Background Image with Ken Burns */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutKenBurns 25s ease-in-out infinite alternate;
}

@keyframes aboutKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1%, 1%); }
  100% { transform: scale(1.06) translate(1%, -1%); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 5, 5, 0.92) 0%,
    rgba(62, 39, 35, 0.7) 40%,
    rgba(179, 27, 27, 0.35) 70%,
    rgba(230, 81, 0, 0.2) 100%
  );
}

/* Floating Spice Particles */
.spice-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.spice-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0);
    opacity: 0;
  }
  10% { opacity: 1; transform: translateY(80vh) rotate(36deg) scale(1); }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-10vh) rotate(360deg) scale(0.3);
    opacity: 0;
  }
}

/* Hero Content */
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(179, 27, 27, 0.15);
  border: 1px solid rgba(179, 27, 27, 0.4);
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: aboutReveal 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 5px var(--primary-red); }
  50% { box-shadow: 0 0 20px var(--primary-red), 0 0 40px rgba(179,27,27,0.3); }
}

/* Cinematic Title */
.about-cinematic-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(40px);
}

.title-line-1 {
  animation: aboutReveal 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line-2 {
  animation: aboutReveal 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-accent {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-orange));
  border-radius: 2px;
  animation: underlineGrow 1.2s 1.2s ease-out forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

@keyframes aboutReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle */
.about-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: aboutReveal 0.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-hero-subtitle em {
  color: rgba(255,255,255,0.95);
  font-style: normal;
  font-weight: 600;
  border-bottom: 2px solid rgba(179,27,27,0.5);
}

/* CTA Buttons */
.about-hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: aboutReveal 0.8s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-about-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 25px rgba(179,27,27,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-about-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(179,27,27,0.5);
  color: white;
}

.btn-about-glass {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-about-glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  color: white;
}

/* Stats Strip */
.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem 3rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  animation: aboutReveal 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-secondary);
}

.stat-suffix {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-orange);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.about-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  animation: aboutReveal 0.8s 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: aboutScrollWheel 2s infinite;
}

@keyframes aboutScrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ABOUT STORY SECTION (below hero)                                      */
/* ═══════════════════════════════════════════════════════════════════════ */

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-story-image-col {
  position: relative;
}

.about-story-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(62,39,35,0.15);
  position: relative;
}

.about-story-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-story-img-wrap:hover img {
  transform: scale(1.04);
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(179,27,27,0.35);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.about-story-heading {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-story-para {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* Quote Block */
.about-quote-block {
  margin-top: 2rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-quote-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-red), var(--secondary-orange));
  border-radius: 4px;
}

.about-quote-block blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-red);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.about-quote-block cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ABOUT HERO RESPONSIVE                                                 */
/* ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  .title-line { font-size: 3.8rem; }
  .about-hero-stats { padding: 1.2rem 1.5rem; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 1.8rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-float-badge { right: 10px; bottom: -15px; }
}

@media (max-width: 768px) {
  .title-line { font-size: 2.8rem; }
  .about-hero-subtitle { font-size: 1.05rem; }
  .about-hero-actions { flex-direction: column; width: 100%; }
  .btn-about-primary, .btn-about-glass { width: 100%; justify-content: center; }
  .about-hero-stats { flex-direction: column; gap: 0.8rem; }
  .stat-divider { width: 60px; height: 1px; }
  .about-story-heading { font-size: 2rem; }
}
