@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Portfolio Styles */
/* Color Palette - Light Mode (default) */
:root {
  /* Primary Colors */
  --primary-pink: #00A878;
  --primary-pink-light: #1ABC9C;
  --bg: #FFFFFF;
  --bg-secondary: #F8FAFB;
  --text: #0F1419;
  --text-light: #5A6370;
  --divider: #E8EAED;
  --shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier New', monospace;

  /* Root Setup */
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Dark Mode */
[data-theme="dark"] {
  /* Primary Colors */
  --primary-pink: #00D494;
  --primary-pink-light: #1FE3B0;
  --bg: #0F1419;
  --bg-secondary: #1A1F2E;
  --text: #F5F7FA;
  --text-light: #B8C1CC;
  --divider: #2D3748;
  --shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  
  color-scheme: dark;
}
#root {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: var(--bg);
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
}
a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--primary-pink-light);
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}
/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-family: var(--font-body);
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

.theme-toggle .icon {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 768px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .theme-toggle .icon {
    width: 18px;
    height: 18px;
  }
}
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  padding: 1.5rem 2rem;
}

[data-theme="dark"] .navbar {
  background: rgba(15, 20, 25, 0.85);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 20, 25, 0.9);
}

.navbar-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.navbar-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

[data-theme="dark"] .navbar-logo a {
  color: #fff;
}

.navbar-logo a:hover {
  color: var(--primary-pink);
}

.navbar-logo a:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Desktop Menu */
.navbar-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.navbar-menu button,
.navbar-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.navbar-menu button:focus,
.navbar-menu a:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

.navbar-menu button::after,
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width 0.3s ease;
}

.navbar-menu button:hover::after,
.navbar-menu a:hover::after {
  width: 100%;
}

/* Navbar Controls */
.navbar-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}

.hamburger span.active:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger span.active:nth-child(2) {
  opacity: 0;
}

.hamburger span.active:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu-mobile {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .navbar-menu-mobile {
  background: rgba(26, 31, 46, 0.98);
}

.navbar-menu-mobile button,
.navbar-menu-mobile a {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.navbar-menu-mobile button:hover,
.navbar-menu-mobile a:hover {
  color: var(--primary-pink);
}

.navbar-menu-mobile button:focus,
.navbar-menu-mobile a:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Responsive */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-content {
    padding: 0;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .navbar-menu-mobile {
    display: flex !important;
  }

  .navbar-logo a {
    font-size: 1.25rem;
  }
}
/* Flower Decorations Background */
.flower-decoration {
  position: absolute;
  pointer-events: auto;
  z-index: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: floatGently 6s ease-in-out infinite;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.flower-decoration:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

.flower-decoration.spinning {
  animation: floatGently 6s ease-in-out infinite, spinFlower 1s linear infinite;
}

.flower-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

/* Gentle floating animation */
@keyframes floatGently {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Spinning animation */
@keyframes spinFlower {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(360deg) translateY(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .flower-decoration {
    opacity: 0.2 !important;
  }
}

@media (max-width: 480px) {
  .flower-decoration {
    display: none;
  }
}
/* Hero Section Styles */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--primary-pink);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(0, 168, 120, 0.2);
  font-family: var(--font-body);
}

.hero-cta:hover {
  background: var(--primary-pink-light);
  transform: translateY(-3px);
  box-shadow: 0px 20px 45px rgba(0, 168, 120, 0.3);
}

.hero-cta:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

.hero-cta:active {
  transform: translateY(0);
}

.hero-cta .arrow {
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-cta:hover .arrow {
  transform: translateX(5px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--divider);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.hero-scroll-indicator span {
  width: 2px;
  height: 8px;
  background: var(--primary-pink);
  border-radius: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    margin-top: 70px;
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

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

  .hero-cta {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .hero-scroll-indicator {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    margin-top: 60px;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }
}
/* ProjectCard Component Styles */
.project-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

[data-theme="dark"] .project-card {
  background: #252D3D;
  border: 1px solid #3A4455;
}

.project-card:hover {
  box-shadow: var(--shadow);
}

/* Project Image */
.project-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-case-study {
  color: white;
  background: var(--primary-pink);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-case-study:hover {
  background: var(--primary-pink-light);
  transform: translateY(-3px);
  box-shadow: 0px 15px 35px rgba(239, 163, 181, 0.2);
}

.view-case-study:focus {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Project Content */
.project-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-category {
  font-size: 0.8rem;
  color: var(--primary-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tag {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

[data-theme="dark"] .tag {
  background: #3A4455;
  border: 1px solid #4A5566;
}

.project-card:hover .tag {
  background: rgba(239, 163, 181, 0.15);
  color: var(--primary-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .project-image-container {
    height: 220px;
  }

  .project-content {
    padding: 1.75rem;
  }

  .project-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .project-image-container {
    height: 180px;
  }

  .project-content {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
/* Projects Section */
.projects {
  background: var(--bg);
  padding: 6rem 1.5rem;
}

.projects .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* ProjectCard Styles */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

/* Project Image */
.project-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-case-study {
  color: white;
  background: var(--primary-pink);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-case-study:hover {
  background: var(--primary-pink-light);
  transform: translateY(-3px);
  box-shadow: 0px 15px 35px rgba(0, 168, 120, 0.2);
}

.view-case-study:focus {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* Project Content */
.project-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-category {
  font-size: 0.8rem;
  color: var(--primary-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tag {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-card:hover .tag {
  background: rgba(239, 163, 181, 0.15);
  color: var(--primary-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .projects {
    padding: 4rem 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-image-container {
    height: 220px;
  }

  .project-content {
    padding: 1.75rem;
  }

  .project-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 3rem 1rem;
  }

  .projects-grid {
    gap: 1.5rem;
  }

  .project-image-container {
    height: 180px;
  }

  .project-content {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
/* About Section */
.about {
  background: var(--bg);
  padding: 6rem 1.5rem;
}

.about .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

/* Image Column */
.about-image-column {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Column */
.about-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-intro,
.about-bio {
  margin: 0;
}

.about-intro p,
.about-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-intro p {
  font-size: 1rem;
  font-weight: 500;
}

/* Skills Section */
.about-skills {
  margin-top: 1rem;
}

.about-skills h3 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(239, 163, 181, 0.2);
  color: var(--primary-pink);
}

.skill-tag:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* CTA Button */
.about-cta {
  margin-top: 2rem;
}

.view-resume {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--primary-pink);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(239, 163, 181, 0.2);
}

.view-resume:hover {
  background: var(--primary-pink-light);
  transform: translateY(-3px);
  box-shadow: 0px 20px 45px rgba(239, 163, 181, 0.3);
}

.view-resume:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-column {
    order: -1;
  }

  .about-image-wrapper {
    max-width: 300px;
  }

  .about-intro p {
    font-size: 1rem;
  }

  .about-skills h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 3rem 1rem;
  }

  .about-content {
    gap: 2rem;
  }

  .about-image-wrapper {
    max-width: 200px;
  }

  .about-intro p,
  .about-bio p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .skills-grid {
    gap: 0.5rem;
  }

  .skill-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .view-resume {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
/* Contact Section */
.contact {
  background: var(--bg-secondary);
  padding: 6rem 1.5rem;
}

.contact .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.contact-title {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Contact Links */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 2rem 0;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg);
  color: var(--text);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider);
}

.contact-link:hover {
  background: var(--primary-pink);
  color: white;
  box-shadow: 0px 10px 25px rgba(0, 168, 120, 0.2);
}

.contact-link:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

.link-icon {
  font-size: 1.2rem;
  display: inline-flex;
}

.link-text {
  flex-grow: 1;
}

.link-arrow {
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.contact-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* CTA Button */
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--primary-pink);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 15px 35px rgba(239, 163, 181, 0.2);
  font-family: var(--font-body);
  margin-top: 1rem;
}

.contact-cta:hover {
  background: var(--primary-pink-light);
  transform: translateY(-3px);
  box-shadow: 0px 20px 45px rgba(239, 163, 181, 0.3);
}

.contact-cta:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

.contact-cta:active {
  transform: translateY(0);
}

.cta-arrow {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-cta:hover .cta-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 4rem 1.5rem;
  }

  .contact-title {
    font-size: 1.875rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-links {
    max-width: 100%;
  }

  .contact-link {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .contact-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 3rem 1rem;
  }

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

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .contact-links {
    gap: 0.75rem;
  }

  .contact-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .link-icon {
    font-size: 1rem;
  }

  .contact-cta {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}
/* Footer */
.footer {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--divider);
}

.footer-section h3,
.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer-section h3 {
  font-size: 1.25rem;
}

.footer-section p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-pink);
}

.footer-section a:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-bottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid var(--divider);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 0.95rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
/* Toggle View Component */
.toggle-view {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1.2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.toggle-container {
  display: flex;
  gap: 0.6rem;
  background: var(--bg);
  padding: 0.5rem;
  border-radius: 28px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.toggle-button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.toggle-button:hover {
  background: rgba(0, 168, 120, 0.08);
  color: var(--text);
}

.toggle-button.active {
  background: var(--primary-pink);
  color: white;
  box-shadow: 0px 2px 8px rgba(0, 168, 120, 0.2);
}

.toggle-icon {
  font-size: 1rem;
  display: inline-block;
}

.toggle-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .toggle-view {
    padding: 1.5rem;
  }

  .toggle-container {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .toggle-button {
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .toggle-view {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .toggle-container {
    gap: 0.5rem;
  }

  .toggle-button {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    flex: 1;
  }

  .toggle-icon {
    display: none;
  }

  .toggle-hint {
    font-size: 0.8rem;
  }
}
/* Case Study Component */
.case-study {
  width: 100%;
}

.mode-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  color: var(--primary-pink);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

/* ===== RECRUITER MODE ===== */
.recruiter-mode .quick-overview {
  margin-bottom: 2.5rem;
}

.recruiter-mode h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--text);
}

.recruiter-mode .subtitle {
  color: var(--primary-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.recruiter-mode .description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.recruiter-mode .tagline {
  font-size: 1rem;
  color: var(--primary-pink);
  line-height: 1.6;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.stat p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.quick-tools {
  margin: 2.5rem 0;
}

.quick-tools h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  max-width: 380px;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tool-item:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(232, 93, 117, 0.1);
}

.tool-logo-img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.tool-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tool-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  color: var(--text);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tool-badge:hover {
  background: transparent;
  color: var(--primary-pink);
  border-color: var(--primary-pink);
}

/* ===== FULL CASE STUDY MODE ===== */

/* Hero Section */
.case-hero {
  margin-bottom: 3rem;
  padding-bottom: 0;
  border-bottom: none;
}

.hero-content {
  max-width: 1200px;
}

.case-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-category {
  color: var(--primary-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 1rem;
}

/* Case Sections */
.case-section {
  margin-bottom: 4rem;
  padding-bottom: 0;
  border-bottom: none;
}

.case-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.case-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.section-content {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.section-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.stats-section h2::before {
  display: none;
}

.stats-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.overview-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.overview-card {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
}

.overview-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

.overview-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-pink);
  display: block;
  margin-bottom: 0.75rem;
}

.overview-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* Problem Section */
.problem-section {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-pink);
  margin-bottom: 4rem;
}

.problem-header {
  margin-bottom: 2.5rem;
}

.problem-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.problem-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  padding-top: 0.5rem;
}

.problem-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--divider);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.problem-impact {
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.problem-impact h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.impact-card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-left: 4px solid var(--primary-pink);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.1);
}

.impact-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.problem-section h2::before {
  display: none;
}

/* Research Section */
.research-section {
  margin-bottom: 4rem;
}

.research-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.research-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 3rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.research-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.research-subsection {
  margin-bottom: 3rem;
}

.research-subsection h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

/* Research Methods */
.research-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.method-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.1);
}

.method-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.method-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Personas Grid */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.persona-card {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 2px solid var(--divider);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.persona-card:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 8px 24px rgba(232, 93, 117, 0.12);
}

.persona-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--divider);
}

.persona-header h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.persona-subtitle {
  font-size: 0.9rem;
  color: var(--primary-pink);
  font-weight: 500;
}

.persona-details p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.persona-details p:last-child {
  margin-bottom: 0;
}

/* User Journey */
.journey-intro {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.journey-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.journey-stage {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.journey-stage:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

.stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-pink);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.journey-stage h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.journey-stage p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Journey Persona Card */
.journey-persona {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 2px solid var(--divider);
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.persona-photo {
  flex-shrink: 0;
}

.photo-placeholder-small {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.persona-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  margin: 0;
}

.persona-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.persona-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(232, 93, 117, 0.1);
  color: var(--primary-pink);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.persona-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.persona-stats {
  display: grid;
  gap: 1rem;
  text-align: right;
}

.stat-item {
  margin: 0;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin: 0 0 0.5rem 0;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin: 0;
}

/* Journey Map */
.journey-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.journey-stage-detailed {
  background: var(--bg-secondary);
  border: 2px solid var(--divider);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.journey-stage-detailed:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 8px 24px rgba(232, 93, 117, 0.12);
  transform: translateY(-4px);
}

.stage-header {
  background: var(--primary-pink);
  color: white;
  margin: 0;
  padding: 1.25rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.stage-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-light);
}

.content-section p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.emotion {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.emotion-bar {
  height: 3px;
  background: var(--primary-pink);
  border-radius: 2px;
  width: 60%;
}

.pain-points .section-label {
  color: var(--primary-pink);
  font-weight: 700;
}

.pain-points p {
  color: var(--text-light);
}

.opportunities .section-label {
  color: var(--primary-pink);
  font-weight: 700;
}

.opportunities p {
  color: var(--text-light);
}

/* Old journey styles cleanup */
.journey-intro {
  display: none;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.insight-card {
  padding: 2rem;
  background: var(--bg);
  border: 2px solid var(--divider);
  border-left: 4px solid var(--primary-pink);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.insight-card:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 6px 16px rgba(232, 93, 117, 0.1);
  transform: translateX(4px);
}

.insight-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.insight-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .research-methods {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .research-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .method-card {
    padding: 1.5rem;
  }

  .journey-stages {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stage-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .journey-stage {
    padding: 1rem;
  }

  .journey-stage h4 {
    font-size: 0.9rem;
  }

  .journey-stage p {
    font-size: 0.8rem;
  }

  .persona-card {
    padding: 1.5rem;
  }

  .insight-card {
    padding: 1.5rem;
  }
}
.solution-section {
  background: linear-gradient(135deg, rgba(0, 168, 120, 0.05), rgba(232, 93, 117, 0.05));
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--text);
  margin-bottom: 4rem;
}

.solution-section h2::before {
  display: none;
}

/* Process Section */
.process-section {
  margin-bottom: 4rem;
}

/* Details Section */
.details-section {
  margin-bottom: 4rem;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.tools-section h3,
.timeline-section h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-section p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.impact-section h2 {
  color: var(--text);
}

.impact-section h2::before {
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
}

.impact-content p {
  color: var(--text-light);
}

.impact-highlight {
  font-size: 1rem;
  font-weight: 600;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 8px;
  margin-bottom: 1.5rem !important;
  border-left: 4px solid var(--primary-pink);
  color: var(--text);
}

/* Learnings Section */
.learnings-section {
  margin-bottom: 4rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid var(--divider);
}

.cta-section h2 {
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-section h2::before {
  width: 3px;
  background: var(--primary-pink);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-pink);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
  background: var(--primary-pink);
  color: white;
}

/* Photo Placeholders */
.photo-section {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
}

.photo-section .case-image {
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.problem-image .case-image {
  max-width: 85%;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(232, 93, 117, 0.1));
  border: 2px dashed var(--divider);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}

.photo-placeholder:hover {
  border-color: var(--primary-pink);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(232, 93, 117, 0.2));
}

.placeholder-text {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.photo-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

.photo-grid .photo-placeholder {
  aspect-ratio: 4/3;
}

.photo-grid-four .photo-placeholder {
  aspect-ratio: 1/1;
}

/* Image Container (for when actual images are added) */
.case-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.photo-section .case-image {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.photo-grid .case-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.photo-grid-four .case-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Final Designs Section */
.final-designs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-design-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 130px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .case-hero h1 {
    font-size: 1.5rem;
  }

  .case-section h2 {
    font-size: 1.4rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .tool-item {
    padding: 0.4rem;
  }

  .tool-logo-img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.25rem;
  }

  .tool-name {
    font-size: 0.8rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }
  }

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

  .photo-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .problem-section,
  .solution-section {
    padding: 2rem;
  }

  .impact-section {
    padding: 2rem;
  }

  .cta-section {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .case-hero h1 {
    font-size: 1.5rem;
  }

  .case-section h2 {
    font-size: 1.4rem;
  }

  .case-section h2::before {
    width: 3px;
    height: 2rem;
  }

  .hero-category {
    font-size: 0.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .quick-stats,
  .overview-grid,
  .details-content {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-item {
    padding: 0.4rem;
  }

  .tools-list {
    gap: 0.5rem;
  }

  .tool-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .photo-placeholder {
    aspect-ratio: 4/3;
  }

  .photo-grid,
  .photo-grid-four {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-section {
    padding: 1.5rem;
  }

  .impact-highlight {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* ===== NEW SECTIONS STYLES ===== */

/* Wireframes & Iterations Section */
.wireframes-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.wireframes-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wireframes-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.section-intro {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.iteration-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.iteration-step {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary-pink);
}

.iteration-step h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.iteration-step p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Design System Section */
.design-system-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.design-system-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.design-system-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.design-system-subsection {
  margin-bottom: 3rem;
}

.design-system-subsection h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.color-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--divider);
}

.color-card:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.1);
  transform: translateY(-2px);
}

.color-swatch {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.color-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.color-code {
  font-size: 0.9rem;
  color: var(--primary-pink);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: monospace;
}

.color-usage {
  font-size: 0.85rem;
  color: var(--text-light);
}

.typography-guide {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.typography-item {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary-pink);
}

.typography-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.typography-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.accessibility-checklist {
  display: grid;
  gap: 1rem;
}

.check-item {
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
  border-left: 4px solid var(--primary-pink);
}

/* Final Designs Section */
.final-designs-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.final-designs-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.final-designs-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

/* Usability Testing Section */
.usability-testing-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.usability-testing-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.usability-testing-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.usability-testing-section .section-intro {
  margin-bottom: 1rem;
}

.test-scenarios {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.test-scenario {
  padding: 1.25rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
}

.test-scenario:hover {
  border-color: var(--primary-pink);
  box-shadow: 0 6px 16px rgba(232, 93, 117, 0.1);
}

.test-scenario h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.scenario-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg);
  border-left: 3px solid var(--primary-pink);
  border-radius: 4px;
}

.test-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.metric {
  text-align: center;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--divider);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.test-insight {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.75rem;
  background: rgba(232, 93, 117, 0.05);
  border-left: 3px solid var(--primary-pink);
  border-radius: 4px;
  margin: 0;
}

.test-summary {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 8px;
  border: 2px solid var(--divider);
}

.test-summary h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.test-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.test-summary li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
}

.test-summary li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-weight: 700;
}

/* Impact & Learnings Combined Section */
.impact-learnings-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.impact-learnings-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.impact-learnings-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.impact-subsection {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider);
}

.impact-subsection h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.learnings-subsection h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.impact-card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-pink);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.impact-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(232, 93, 117, 0.1);
}

.impact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.learnings-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.learning-card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--divider);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.learning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
}

.learning-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(232, 93, 117, 0.1);
}

.learning-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.learning-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.solution-section::before {
  content: '06 — SOLUTION';
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.solution-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.solution-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .iteration-content {
    grid-template-columns: 1fr;
  }

  .test-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-map {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-persona {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .persona-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }

  .learnings-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .color-grid {
    grid-template-columns: 1fr;
  }

  .test-metrics {
    grid-template-columns: 1fr;
  }

  .iteration-step {
    padding: 1.5rem;
  }

  .test-scenario {
    padding: 1.5rem;
  }

  .test-summary {
    padding: 1.5rem;
  }

  .journey-map {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journey-persona {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stage-content {
    padding: 1.25rem;
  }

  .stage-header {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .content-section p {
    font-size: 0.8rem;
  }

  .impact-card,
  .learning-card {
    padding: 1.25rem;
  }

  .impact-card h4,
  .learning-card h4 {
    font-size: 0.95rem;
  }

  .impact-card p,
  .learning-card p {
    font-size: 0.9rem;
  }
}

/* Project Video Section */
.project-video-section {
  margin-bottom: 4rem;
}

.project-video-section .section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 0.75rem;
}

.project-video-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-video-section h2::before {
  content: '';
  width: 4px;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-pink), rgba(232, 93, 117, 0.3));
  border-radius: 2px;
}

.video-container {
  display: none;
}

.video-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  background: #00a878;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: #000;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button-overlay.hidden {
  display: none;
}

.play-button-overlay::after {
  content: '▶';
  font-size: 20px;
  color: #00a878;
  margin-left: 3px;
}

.video-thumbnail-wrapper:hover .play-button-overlay {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-container:hover {
  /* No hover effects */
}

.project-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border-radius: 12px;
}

/* Custom video controls styling */
video::-webkit-media-controls-panel {
  background: transparent;
}

video::-webkit-media-controls-play-button {
  background: transparent;
  border: none;
}

video::-webkit-media-controls-fullscreen-button {
  background: transparent;
  border: none;
}

video::-moz-media-controls-play-button {
  background: transparent;
}

@media (max-width: 768px) {
  .project-video-section {
    margin-bottom: 3rem;
  }

  .video-container {
    padding: 1rem;
  }

  .project-video-section h2 {
    font-size: 1.4rem;
  }
}
/* Project Page */
.project-page {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-top: 90px;
}

.project-page-header {
  padding: 2rem;
  border-bottom: 1px solid var(--divider);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.back-button:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}

.project-page-container {
  flex: 1;
  padding: 4rem 1.5rem;
}

.project-page-container .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.project-cta {
  margin-top: 6rem;
  padding: 3rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.project-cta h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 0;
}

.project-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-pink);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(0, 168, 120, 0.2);
}

.cta-button:hover {
  background: var(--primary-pink-light);
  transform: translateY(-2px);
  box-shadow: 0px 15px 35px rgba(0, 168, 120, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .project-page-header {
    margin-top: 70px;
    padding: 1.5rem;
  }

  .project-page-container {
    padding: 2.5rem 1.5rem;
  }

  .back-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .project-cta {
    padding: 2rem;
    margin-top: 4rem;
  }

  .project-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .project-page-header {
    padding: 1rem;
  }

  .project-page-container {
    padding: 2rem 1rem;
  }

  .project-cta {
    padding: 1.5rem;
    margin-top: 3rem;
    gap: 1rem;
  }

  .project-cta h3 {
    font-size: 1.25rem;
  }

  .project-cta p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}
/* App Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
  width: 100%;
}

body {
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-top: 90px;
}

/* ------ Utility Classes ------ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  width: 100%;
  padding: 6rem 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

/* ------ Responsive ------ */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}


