/* ============================================
   PUNIT ASTHANA — CREATIVE PROFESSIONAL REDESIGN
   Color-Locked: Beige/Tan + Black + Orange
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400;1,6..72,500&display=swap');

/* ---- COLOR-LOCKED TOKEN SYSTEM ---- */
:root {
  /* PRIMARY PALETTE — LOCKED */
  --bg-primary: #FAF9F6;
  --bg-warm: #F5F5F0;
  --bg-cream: #F0EBE3;
  --bg-tan: #E8E0D4;
  --bg-deep: #DDD5C8;

  --text-primary: #111111;
  --text-secondary: #333333;
  --text-muted: #666655;
  --text-faint: #999988;

  --accent: #FF9500;
  --accent-hover: #FFA726;
  --accent-deep: #E68600;
  --accent-glow: rgba(255, 149, 0, 0.15);
  --accent-glow-strong: rgba(255, 149, 0, 0.25);

  --white: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-warm: rgba(200, 180, 150, 0.3);
  --shadow-soft: rgba(0, 0, 0, 0.04);
  --shadow-medium: rgba(0, 0, 0, 0.08);

  /* TYPOGRAPHY */
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* SPACING */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* TRANSITIONS */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.4s;
  --duration-slow: 0.8s;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY SCALE ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

section {
  padding: var(--space-2xl) 0;
  position: relative;
}

/* ---- NAVIGATION — STICKY + ORANGE UNDERLINE ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration-med) var(--ease-smooth);
}

.site-nav.scrolled {
  box-shadow: 0 4px 30px var(--shadow-medium);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--duration-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--duration-med) var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--duration-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: var(--bg-primary);
    box-shadow: -10px 0 40px var(--shadow-medium);
    transition: right var(--duration-med) var(--ease-smooth);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-warm);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.btn-ghost:hover {
  border-bottom-color: var(--accent);
}

/* ---- HERO SECTION — CINEMATIC CREATIVE ---- */
.hero {
  min-height: 70vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #0a0705;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(10, 7, 5, 0.5) 0%, rgba(10, 7, 5, 0.25) 40%, rgba(10, 7, 5, 0.15) 70%, rgba(10, 7, 5, 0.4) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Decorative floating elements */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 149, 0, 0.12);
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  animation: circleFloat 12s ease-in-out infinite;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: -80px;
  border-color: rgba(255, 149, 0, 0.08);
  animation: circleFloat 16s ease-in-out 3s infinite reverse;
}

.hero-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 149, 0, 0.2), transparent);
}

.hero-line-1 {
  height: 200px;
  top: 10%;
  right: 12%;
  animation: lineShimmer 6s ease-in-out infinite;
}

.hero-line-2 {
  height: 150px;
  bottom: 20%;
  left: 8%;
  animation: lineShimmer 8s ease-in-out 2s infinite;
}

@keyframes circleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-15px, 20px) scale(1.04);
  }
}

@keyframes lineShimmer {

  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.6;
    transform: scaleY(1.15);
  }
}

/* Hero content layout */
.hero .hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 140px;
}

/* Name treatment — BIG editorial display */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #FFA626;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 40px rgba(255, 166, 38, 0.4);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero-name-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex-shrink: 0;
}

.hero-name-line:last-child {
  background: linear-gradient(90deg, transparent, var(--accent));
}

/* Headline — large serif editorial */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  max-width: 1000px;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* Accent question — italic + glow */
.hero-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--accent);
  max-width: 600px;
  line-height: 1.55;
  margin-bottom: var(--space-xl);
  text-shadow: 0 0 40px rgba(255, 149, 0, 0.15);
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

/* Tags bar */
.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  transition: color 0.3s;
}

.hero-tag:hover {
  color: var(--accent);
}

.hero-tag-divider {
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Bottom stats strip */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(10, 7, 5, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 149, 0, 0.12);
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.25rem 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.4rem;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: 3rem;
  bottom: 100px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 149, 0, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero .hero-content {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .hero-name {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    gap: 0.75rem;
  }

  .hero-name-line {
    width: 30px;
  }

  .hero-question {
    padding-left: 1rem;
  }

  .hero-tags {
    gap: 0.5rem;
  }

  .hero-tag {
    font-size: 0.9rem;
  }

  .hero-stat {
    padding: 0 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
  }

  .hero-circle-2 {
    width: 200px;
    height: 200px;
  }

  .hero-line-1,
  .hero-line-2 {
    display: none;
  }
}

/* ---- SCROLL ANIMATIONS ---- */
/* Elements are visible by default. JS adds .js-ready to <html>,
   which enables the hidden initial state. This way content is
   always visible if JS fails or observer doesn't fire. */
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}

html.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}

html.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(30px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header .label {
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-muted);
}

/* ---- CARDS WITH HOVER ANIMATIONS ---- */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card-grid.cols-2 {
  grid-template-columns: 1fr;
}

.card-grid.cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-smooth);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-medium);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---- IMAGE CARDS (Initiative Cards) ---- */
.initiative-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-smooth);
  position: relative;
}

.initiative-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px var(--shadow-medium);
}

.initiative-card .card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.initiative-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.initiative-card:hover .card-img img {
  transform: scale(1.05);
}

.initiative-card .card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration-med);
}

.initiative-card:hover .card-img .card-overlay {
  opacity: 1;
}

.initiative-card .card-body {
  padding: var(--space-lg);
}

.initiative-card .card-body h3 {
  margin-bottom: 0.75rem;
}

/* ---- INTERACTIVE TABS ---- */
.tabs-container {
  margin-top: var(--space-lg);
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--duration-fast);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--duration-med) var(--ease-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.5s var(--ease-smooth);
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- VIDEO EMBED CARDS ---- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-cream);
  cursor: pointer;
  transition: transform var(--duration-med) var(--ease-smooth);
}

.video-card:hover {
  transform: scale(1.02);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px var(--accent-glow-strong);
  transition: all var(--duration-med) var(--ease-smooth);
}

.video-card .play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent-hover);
}

/* ---- IDEAS & INSIGHTS SECTION ---- */
.ideas-insights {
  background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(30, 20, 10, 0.88)), url('../images/new1.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.ideas-header {
  margin-bottom: var(--space-xl);
}

.ideas-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.ideas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .ideas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ideas-featured-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-smooth);
}

.ideas-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.ideas-featured-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-4px);
}

.ideas-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ideas-detail-block {
  padding-bottom: var(--space-md);
}

.ideas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ideas-tag {
  background: rgba(255, 149, 0, 0.12);
  border: 1px solid rgba(255, 149, 0, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  transition: all var(--duration-fast);
}

.ideas-tag:hover {
  background: rgba(255, 149, 0, 0.25);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.ideas-formats {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ideas-format-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.ideas-format-icon {
  font-size: 1.1rem;
}

/* ---- PARALLAX QUOTE SECTION — CREATIVE ---- */
.parallax-quote {
  background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.88), rgba(30, 20, 10, 0.85)), url('../images/new1.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.parallax-quote::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 5%;
  font-family: var(--font-display);
  font-size: 16rem;
  color: rgba(255, 149, 0, 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  animation: quoteFloat 6s ease-in-out infinite alternate;
}

.parallax-quote::after {
  content: '\201D';
  position: absolute;
  bottom: -3rem;
  right: 5%;
  font-family: var(--font-display);
  font-size: 16rem;
  color: rgba(255, 149, 0, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  animation: quoteFloat 6s ease-in-out 1s infinite alternate-reverse;
}

@keyframes quoteFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Floating particles */
.parallax-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.parallax-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleDrift 8s ease-in-out infinite;
}

.parallax-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.parallax-particles span:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1.5s;
  animation-duration: 9s;
  width: 6px;
  height: 6px;
}

.parallax-particles span:nth-child(3) {
  top: 40%;
  left: 50%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.parallax-particles span:nth-child(4) {
  top: 80%;
  left: 25%;
  animation-delay: 2s;
  animation-duration: 10s;
  width: 3px;
  height: 3px;
}

.parallax-particles span:nth-child(5) {
  top: 15%;
  left: 70%;
  animation-delay: 4s;
  animation-duration: 8s;
  width: 5px;
  height: 5px;
}

@keyframes particleDrift {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-10px) translateX(-15px);
    opacity: 0.3;
  }

  75% {
    transform: translateY(-25px) translateX(5px);
    opacity: 0.6;
  }
}

/* Badge */
.quote-badge {
  display: inline-block;
  background: rgba(255, 149, 0, 0.15);
  border: 1px solid rgba(255, 149, 0, 0.3);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(255, 149, 0, 0.15);
  }
}

.parallax-quote .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  transform: none !important;
}

/* Highlighted keyword */
.quote-highlight {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.quote-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Animated divider */
.quote-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: var(--space-lg) auto var(--space-md);
  position: relative;
  overflow: hidden;
}

.quote-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.parallax-quote cite {
  display: block;
  margin-top: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 1 !important;
  transform: none !important;
}

/* CTA button */
.btn-quote {
  display: inline-flex;
  margin-top: var(--space-lg);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: all var(--duration-med) var(--ease-smooth);
}

.btn-quote:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

/* ---- RELIABILITY PATHWAY (Animated) ---- */
.pathway {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  padding: var(--space-lg) 0;
}

.pathway-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--duration-med) var(--ease-smooth);
}

.pathway-step:hover {
  background: var(--bg-warm);
  border-color: var(--text-secondary);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.pathway-arrow {
  font-size: 1.25rem;
  color: var(--text-secondary);
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.pathway-step.highlight {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-weight: 600;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border-warm);
  padding: 0.9rem 1rem;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error-msg {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c0392b;
}

.form-group.has-error .error-msg {
  display: block;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-warm);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 36px;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-warm);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--duration-fast);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---- BACKGROUNDS ---- */
.bg-primary {
  background: var(--bg-primary);
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-cream {
  background: var(--bg-cream);
}

.bg-tan {
  background: var(--bg-tan);
}

.bg-white {
  background: var(--white);
}

/* ---- UTILITY GRIDS ---- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .grid-asym {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* ---- MISC ---- */
.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* Subtle divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: var(--space-lg) 0;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---- SMOOTH SECTION TRANSITIONS ---- */
section+section {
  border-top: none;
}

/* Orange glow on hover for key elements */
.glow-hover {
  transition: box-shadow var(--duration-med) var(--ease-smooth);
}

.glow-hover:hover {
  box-shadow: 0 0 40px var(--accent-glow-strong);
}

/* ---- LOADING ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---- COUNTER ANIMATION ---- */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ---- MOBILE OVERRIDES ---- */
@media (max-width: 480px) {
  section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: 80vh;
  }

  .pathway {
    flex-direction: column;
    align-items: stretch;
  }

  .pathway-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
}