/* 
 * LT Studios Website - Main Stylesheet
 * Optimized for performance and accessibility
 * Navigation bar designed to match reference image with proper spacing
 */

/* ===== FONT LOADING ===== */
@font-face {
  font-family: 'SAIBA 45';
  src: url('./fonts/SAIBA-45.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Retro Floral';
  src: url('./fonts/Retro Floral.otf') format('opentype'),
       url('./fonts/Retro Floral.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SAIBA 45', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #000000;
  color: #d3d3d3;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.retro-floral { 
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif; 
}

/* ===== HOMEPAGE SPECIFIC ===== */
body.home {
  overflow: hidden;
  height: 100vh;
}

/* ===== BACKGROUND EFFECTS ===== */
.image-gradient {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
  max-width: 100%;
  height: auto;
}

.layer-blur {
  height: 0;
  width: 30rem;
  position: absolute;
  top: 20%;
  right: 0;
  box-shadow: 0 0 700px 15px white;
  rotate: -30deg;
  z-index: -1;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
  gap: 2rem;
}

/* Desktop layout - logo left, nav center, button right */
@media (min-width: 901px) {
  header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    justify-items: center;
  }
  
  .logo {
    justify-self: start;
    order: 1;
  }
  
  nav {
    justify-self: center;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    width: 100%;
    max-width: 800px;
  }
  
  .btn-quotes {
    justify-self: end;
    order: 3;
  }
}

/* Logo styling to match reference image */
.logo {
  font-family: 'SAIBA 45', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}


/* AI Mood Board button - matching reference image */
.btn-quotes {
  background-color: #d3d3d3;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-family: 'SAIBA 45', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Menu button - matching reference image */
.btn-menu {
  background-color: #d3d3d3;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-family: 'SAIBA 45', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none; /* Hide by default on desktop */
}

.btn-menu:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quotes:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== SLIDESHOW STYLES ===== */
.slideshow-section {
  margin: 2rem 0;
}

.slideshow-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

/* Slideshow Controls */
.slideshow-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.slideshow-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  color: #fff;
}

.slideshow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.slideshow-btn:active {
  transform: scale(0.95);
}

/* Slideshow */
.slideshow {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide Content */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: #fff;
}

.slide-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.slide-content p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Video Section */
.video-section {
  margin-top: 2rem;
}

.video-container {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-content {
  padding: 1.5rem;
  color: #fff;
}

.video-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.video-content p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Responsive Design for Slideshow */
@media (max-width: 768px) {
  .slideshow {
    height: 300px;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
  }
  
  .slideshow-btn {
    width: 40px;
    height: 40px;
  }
  
  .slideshow-controls {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .slideshow {
    height: 250px;
  }
  
  .slide-content h3 {
    font-size: 1rem;
  }
  
  .slideshow-btn {
    width: 36px;
    height: 36px;
  }
}

/* ===== SPLINE VIEWER ===== */
/* Desktop Spline Model - Show on desktop, hide on mobile */
.desktop-spline {
  display: block;
  clip-path: inset(0 0 80px 0);
  margin-bottom: -80px;
}

/* Mobile Spline Model - Hide on desktop, show on mobile */
.mobile-spline {
  display: none;
  clip-path: inset(0 0 80px 0);
  margin-bottom: -80px;
}

/* Show mobile spline on mobile devices */
@media (max-width: 900px) {
  .desktop-spline {
    display: none;
  }
  
  .mobile-spline {
    display: block;
  }
}

/* ===== SCROLLBAR STYLING ===== */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Mobile navigation toggle */
.nav-toggle { 
  display: none; 
}

.burger { 
  display: none; 
  width: 28px; 
  height: 22px; 
  position: relative; 
  cursor: pointer; 
  flex-shrink: 0;
}

.burger span, 
.burger::before, 
.burger::after { 
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 0; 
  height: 2px; 
  background: currentColor; 
  border-radius: 2px; 
  transition: transform .25s ease, top .25s ease, opacity .25s ease; 
}

.burger span { 
  top: 10px; 
}

.burger::before { 
  top: 0; 
}

.burger::after { 
  top: 20px; 
}

.nav-toggle:checked + .burger span { 
  opacity: 0; 
}

.nav-toggle:checked + .burger::before { 
  transform: translateY(10px) rotate(45deg); 
}

.nav-toggle:checked + .burger::after { 
  transform: translateY(-10px) rotate(-45deg); 
}

/* Navigation container - centered */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* Desktop navigation spacing */
@media (min-width: 901px) {
  nav {
    gap: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

/* Navigation links - matching reference image */
nav a {
  font-family: 'SAIBA 45', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
  text-align: center;
  display: inline-block;
}

nav a:hover {
  color: #d3d3d3;
}

/* Desktop navigation links spacing */
@media (min-width: 901px) {
  nav a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #ffffff;
    white-space: nowrap;
    margin: 0;
    padding: 0;
  }
}

/* Tablet and mobile breakpoints */
@media (max-width: 1024px) {
  header {
    padding: 1rem 0;
    gap: 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .btn-menu,
  .btn-quotes {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  header {
    padding: 1rem 0;
    position: relative;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  /* Mobile menu for non-home pages */
  body:not(.home) nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 70vh;
    overflow: auto;
    z-index: 999;
  }
  
  body:not(.home) .nav-toggle:checked ~ nav {
    display: flex;
  }
  
  body:not(.home) .burger {
    display: block;
  }
  
  /* Mobile menu for home page - hide nav and burger, show menu button */
  body.home nav {
    display: none;
  }
  
  body.home .burger {
    display: none;
  }
  
  body.home .btn-menu {
    display: block;
  }
  
  /* Hide menu button on non-home pages */
  body:not(.home) .btn-menu {
    display: none;
  }
  
  .btn-menu,
  .btn-quotes {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  /* Show mobile AI Mood Board button on mobile for non-home pages */
  body:not(.home) .btn-quotes-mobile {
    display: block;
    background-color: #d3d3d3;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-family: 'SAIBA 45', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  body:not(.home) .btn-quotes-mobile:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Hide desktop AI Mood Board button on mobile for non-home pages */
  body:not(.home) .btn-quotes {
    display: none;
  }
}

/* Desktop styles - hide mobile AI Mood Board button */
@media (min-width: 901px) {
  .btn-quotes-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  header {
    padding: 0.75rem 0;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .btn-menu,
  .btn-quotes {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* ABOUT PAGE */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 2rem;
}
.about-hero__copy h2 { font-size: clamp(32px, 5vw, 64px); line-height: 1.1; }
.about-hero__copy p { margin-top: 0.75rem; max-width: 60ch; opacity: 0.9; }
.about-hero__media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-hero__media img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem 0 4rem; }
.about-copy h3 { font-size: clamp(22px, 3.5vw, 40px); margin-bottom: 0.5rem; }
.about-copy p + p { margin-top: 0.75rem; }
.about-image img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.4); }

/* Services dark section (reference image) */
.services-intro {
  background: transparent;
  text-align: center;
  padding: 3rem 0 1rem;
}
.services-intro h2 { font-size: clamp(32px, 6vw, 64px); }
.services-intro p { opacity: 0.85; }

/* Starry banner */
.services-visual {
  height: 260px;
  background: radial-gradient(1200px 400px at 20% -10%, rgba(255,255,255,0.15), transparent),
              radial-gradient(1000px 400px at 80% 10%, rgba(255,255,255,0.12), transparent),
              url('images/laptop-with-glowing-screen-table-dark-top-view-copy-space.jpg') center/cover no-repeat,
              url('gradient.png') center/cover no-repeat;
  border-radius: 14px;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.6);
}

/* Card grid */
.services-grid {
  background: transparent;
  color: #f1f1f1;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.14);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { font-size: .98rem; line-height: 1.65; opacity: .92; }

/* Pixel card effect (scoped to Services only) */
.services-grid .pixel-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px; /* guarantee drawing area */
  transition: border-color 200ms cubic-bezier(0.5, 1, 0.89, 1);
  user-select: none;
  border: 1px solid #27272a;
  border-radius: 25px;
}

.services-grid .pixel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  aspect-ratio: 1;
  background: radial-gradient(circle, #09090b, transparent 85%);
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 2;
}

.services-grid .pixel-card:hover::before,
.services-grid .pixel-card:focus-within::before {
  opacity: 1;
}
.services-grid .pixel-card .pixel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;                /* above background, below text */
  mix-blend-mode: screen;    /* brighten over dark cards */
  opacity: 0.9;
}
.services-grid .pixel-card > *:not(.pixel-canvas) { position: relative; z-index: 3; }

/* ===== PAGE SPECIFIC STYLES ===== */

/* Services grid responsive breakpoints */
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* PORTFOLIO PAGE */
.portfolio-hero { text-align: center; padding: 3rem 0 1rem; }
.portfolio-hero h2 { font-size: clamp(36px, 6.5vw, 72px); }
.portfolio-hero p { margin-top: .5rem; opacity: .92; }

.portfolio-backdrop {
  background: radial-gradient(1400px 500px at 20% -10%, rgba(255,255,255,0.14), transparent),
              radial-gradient(1000px 400px at 80% 10%, rgba(255,255,255,0.12), transparent),
              linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
  border-radius: 14px;
  padding: 1.5rem;
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.portfolio-card { background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.35); backdrop-filter: blur(6px); }
.portfolio-card .card-image { aspect-ratio: 16/9; background: #111 center/cover no-repeat; }
.portfolio-card .card-video { aspect-ratio: 16/9; background: #111; }
.portfolio-card .card-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-card .card-body { padding: 1rem 1rem 1.25rem; }
.portfolio-card h3 { font-size: 1.25rem; }
.portfolio-card .meta { opacity: .85; font-size: .9rem; margin-bottom: .25rem; }
.portfolio-card p { font-size: .95rem; line-height: 1.6; opacity: .92; }

/* Project Details Section */
.project-details { margin-top: 3rem; }
.details-grid { max-width: 800px; margin: 0 auto; }
.details-content { background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.35); backdrop-filter: blur(6px); }
.details-content h3 { font-size: 1.5rem; margin-bottom: 1rem; text-align: center; }
.details-content p { margin-bottom: 1rem; }
.features-list { margin: 1.5rem 0; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.checkmark { color: #4ade80; font-weight: bold; font-size: 1.1rem; }
.feature-item .retro-floral { font-size: 1rem; }

@media (max-width: 1100px){ .portfolio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px){ .portfolio-grid { grid-template-columns: 1fr; } }

/* CONTACT PAGE */
.contact-hero { text-align: center; padding: 3rem 0 2rem; }
.contact-hero h2 { font-size: clamp(36px, 6.5vw, 72px); }
.contact-hero p { margin-top: .5rem; opacity: .92; }

.contact-wrap {
  background: radial-gradient(1400px 500px at 20% -10%, rgba(255,255,255,0.14), transparent),
              radial-gradient(1000px 400px at 80% 10%, rgba(255,255,255,0.12), transparent),
              linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
  border-radius: 14px;
  padding: 1.5rem;
}

.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 1.5rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.contact-info p { opacity: .92; }
.contact-info .info-item { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; opacity: .95; }

.contact-card { background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.35); backdrop-filter: blur(6px); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.contact-card label { display: block; font-size: .95rem; margin: .5rem 0 .25rem; opacity: .9; }
.contact-card input, .contact-card textarea { width: 100%; background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: .75rem .9rem; outline: none; }
.contact-card textarea { min-height: 180px; resize: vertical; }
.contact-card button { margin-top: .75rem; background: #ffffff; color: #111; border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; padding: .75rem 1rem; font-weight: 600; cursor: pointer; }
.contact-card button:hover { filter: brightness(0.98); }

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

/* FOUNDERS PAGE */
.founders-hero { text-align: center; padding: 3rem 0 2rem; }
.founders-hero h2 { font-size: clamp(36px, 6.5vw, 72px); }



.founders-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
  align-items: stretch; 
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 0 6rem;
  justify-content: center;
}
@media (max-width: 900px){ 
  .founders-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
    padding: 0 1rem;
    justify-items: center;
    align-items: center;
  } 
}

/* Advanced ProfileCard Styles */
:root {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --pointer-from-center: 0;
  --pointer-from-top: 0.5;
  --pointer-from-left: 0.5;
  --card-opacity: 0;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --background-x: 50%;
  --background-y: 50%;
  --grain: none;
  --icon: none;
  --behind-gradient: none;
  --inner-gradient: none;
  --sunpillar-1: hsl(2, 100%, 73%);
  --sunpillar-2: hsl(53, 100%, 69%);
  --sunpillar-3: hsl(93, 100%, 69%);
  --sunpillar-4: hsl(176, 100%, 76%);
  --sunpillar-5: hsl(228, 100%, 74%);
  --sunpillar-6: hsl(283, 100%, 73%);
  --sunpillar-clr-1: var(--sunpillar-1);
  --sunpillar-clr-2: var(--sunpillar-2);
  --sunpillar-clr-3: var(--sunpillar-3);
  --sunpillar-clr-4: var(--sunpillar-4);
  --sunpillar-clr-5: var(--sunpillar-5);
  --sunpillar-clr-6: var(--sunpillar-6);
  --card-radius: 30px;
}

.pc-card-wrapper {
  perspective: 500px;
  transform: translate3d(0, 0, 0.1px);
  position: relative;
  touch-action: none;
}

.pc-card-wrapper::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: inherit;
  background-position: inherit;
  border-radius: inherit;
  transition: all 0.5s ease;
  filter: contrast(2) saturate(2) blur(36px);
  transform: scale(0.8) translate3d(0, 0, 0.1px);
  background-size: 100% 100%;
  background-image: var(--behind-gradient);
}

.pc-card-wrapper:hover,
.pc-card-wrapper.active {
  --card-opacity: 1;
}

.pc-card-wrapper:hover::before,
.pc-card-wrapper.active::before {
  filter: contrast(1) saturate(2) blur(40px) opacity(1);
  transform: scale(0.9) translate3d(0, 0, 0.1px);
}

.pc-card {
  height: 80svh;
  max-height: 540px;
  display: grid;
  aspect-ratio: 0.718;
  border-radius: var(--card-radius);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.8) calc((var(--pointer-from-left) * 10px) - 3px) calc((var(--pointer-from-top) * 20px) - 6px) 20px -5px;
  transition: transform 1s ease;
  transform: translate3d(0, 0, 0.1px) rotateX(0deg) rotateY(0deg);
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.pc-inside {
  inset: 1px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate3d(0, 0, 0.01px);
}

.pc-card:hover,
.pc-card.active {
  transition: none;
  transform: translate3d(0, 0, 0.1px) rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
}

.pc-card * {
  display: grid;
  grid-area: 1/-1;
  border-radius: var(--card-radius);
  transform: translate3d(0, 0, 0.1px);
  pointer-events: none;
}

.pc-shine {
  display: none;
}

.pc-shine,
.pc-shine::after {
  --space: 5%;
  --angle: -45deg;
  transform: translate3d(0, 0, 1px);
  overflow: hidden;
  z-index: 3;
  background: transparent;
  background-size: cover;
  background-position: center;
  background-image: repeating-linear-gradient(0deg, var(--sunpillar-clr-1) calc(var(--space) * 1), var(--sunpillar-clr-2) calc(var(--space) * 2), var(--sunpillar-clr-3) calc(var(--space) * 3), var(--sunpillar-clr-4) calc(var(--space) * 4), var(--sunpillar-clr-5) calc(var(--space) * 5), var(--sunpillar-clr-6) calc(var(--space) * 6), var(--sunpillar-clr-1) calc(var(--space) * 7)), repeating-linear-gradient(var(--angle), #0e152e 0%, hsl(180, 10%, 60%) 3.8%, hsl(180, 29%, 66%) 4.5%, hsl(180, 10%, 60%) 5.2%, #0e152e 10%, #0e152e 12%), radial-gradient(farthest-corner circle at var(--pointer-x) var(--pointer-y), hsla(0, 0%, 0%, 0.1) 12%, hsla(0, 0%, 0%, 0.15) 20%, hsla(0, 0%, 0%, 0.25) 120%);
  background-position: 0 var(--background-y), var(--background-x) var(--background-y), center;
  background-blend-mode: color, hard-light;
  background-size: 500% 500%, 300% 300%, 200% 200%;
  background-repeat: repeat;
}

.pc-shine::before,
.pc-shine::after {
  content: '';
  background-position: center;
  background-size: cover;
  grid-area: 1/1;
  opacity: 0;
}

.pc-card:hover .pc-shine,
.pc-card.active .pc-shine {
  filter: brightness(0.85) contrast(1.5) saturate(0.5);
  animation: none;
}

.pc-card:hover .pc-shine::before,
.pc-card.active .pc-shine::before,
.pc-card:hover .pc-shine::after,
.pc-card.active .pc-shine::after {
  opacity: 1;
}

.pc-shine::before {
  background-image: linear-gradient(45deg, var(--sunpillar-4), var(--sunpillar-5), var(--sunpillar-6), var(--sunpillar-1), var(--sunpillar-2), var(--sunpillar-3)), radial-gradient(circle at var(--pointer-x) var(--pointer-y), hsl(0, 0%, 70%) 0%, hsla(0, 0%, 30%, 0.2) 90%), var(--grain);
  background-size: 250% 250%, 100% 100%, 220px 220px;
  background-position: var(--pointer-x) var(--pointer-y), center, calc(var(--pointer-x) * 0.01) calc(var(--pointer-y) * 0.01);
  background-blend-mode: color-dodge;
  filter: brightness(calc(2 - var(--pointer-from-center))) contrast(calc(var(--pointer-from-center) + 2)) saturate(calc(0.5 + var(--pointer-from-center)));
  mix-blend-mode: luminosity;
}

.pc-shine::after {
  background-position: 0 var(--background-y), calc(var(--background-x) * 0.4) calc(var(--background-y) * 0.5), center;
  background-size: 200% 300%, 700% 700%, 100% 100%;
  mix-blend-mode: difference;
  filter: brightness(0.8) contrast(1.5);
}

.pc-glare {
  display: none;
}

.pc-avatar-content {
  mix-blend-mode: screen;
  overflow: hidden;
}

.pc-avatar-content .avatar {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1);
  bottom: 2px;
  opacity: calc(1.75 - var(--pointer-from-center));
}

.pc-avatar-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(30px);
  mask: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

.pc-user-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 12px 14px;
  pointer-events: auto;
}

.pc-user-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.pc-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pc-user-text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.pc-handle {
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.pc-status {
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.pc-contact-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
  pointer-events: auto;
  z-index: 20;
  position: relative;
  mix-blend-mode: normal;
}

.pc-contact-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.pc-content {
  max-height: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  transform: translate3d(calc(var(--pointer-from-left) * -6px + 3px), calc(var(--pointer-from-top) * -6px + 3px), 0.1px) !important;
  z-index: 5;
  mix-blend-mode: luminosity;
}

.pc-details {
  width: 100%;
  position: absolute;
  top: 3em;
  display: flex;
  flex-direction: column;
}

.pc-details h3 {
  font-weight: 600;
  margin: 0;
  font-size: min(4svh, 2.2em);
  margin: 0;
  background-image: linear-gradient(to bottom, #fff, #6f6fbe);
  background-size: 1em 1.5em;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.pc-details p {
  font-weight: 600;
  position: relative;
  top: -12px;
  white-space: nowrap;
  font-size: 16px;
  margin: 0 auto;
  width: min-content;
  background-image: linear-gradient(to bottom, #fff, #4a4ac0);
  background-size: 1em 1.5em;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

@keyframes glow-bg {
  0% {
    --bgrotate: 0deg;
  }
  100% {
    --bgrotate: 360deg;
  }
}

@keyframes holo-bg {
  0% {
    background-position: 0 var(--background-y), 0 0, center;
  }
  100% {
    background-position: 0 var(--background-y), 90% 90%, center;
  }
}

@media (max-width: 768px) {
  .pc-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .pc-card {
    height: 70svh;
    max-height: 450px;
  }

  .pc-details {
    top: 2em;
  }

  .pc-details h3 {
    font-size: min(3.5svh, 2em);
  }

  .pc-details p {
    font-size: 14px;
  }

  .pc-user-info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 10px 12px;
  }

  .pc-mini-avatar {
    width: 28px;
    height: 28px;
  }

  .pc-user-details {
    gap: 10px;
  }

  .pc-handle {
    font-size: 13px;
  }

  .pc-status {
    font-size: 10px;
  }

  .pc-contact-btn {
    padding: 4px 10px;
    font-size: 10px;
  }
}

/* SITE FOOTER */
.site-footer { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 1.5rem; align-items: start; }
.footer-brand h4 { margin: 0 0 .5rem; font-size: 1.125rem; }
.footer-brand p { opacity: .9; font-size: .95rem; }
.footer-title { font-weight: 700; margin-bottom: .5rem; opacity: .95; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer-list a { color: inherit; text-decoration: none; opacity: .9; }
.footer-list a:hover { color: #a7a7a7; }
.footer-social { display: flex; gap: .75rem; align-items: center; }
.footer-social a { width: 34px; height: 34px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; color: inherit; text-decoration: none; }
.footer-social a:hover { background: rgba(255,255,255,0.06); }
.footer-copy { margin-top: 1.25rem; opacity: .8; font-size: .9rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }

/* MOOD BOARD PAGE */
.mood-hero { text-align: center; padding: 3rem 0 1.5rem; }
.mood-hero h2 { font-size: clamp(36px, 6.5vw, 72px); }
.mood-hero p { max-width: 70ch; margin: .5rem auto 0; opacity: .92; }

.mood-form { background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 1.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.35); backdrop-filter: blur(6px); margin: 0 auto; }
.mood-form h3 { margin-bottom: .75rem; }
.mood-form textarea { width: 100%; min-height: 120px; background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: .9rem; outline: none; }
.mood-actions { margin-top: .75rem; display: flex; gap: .75rem; }
.mood-button { background: #ffffff; color: #111; border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; padding: .75rem 1rem; font-weight: 700; cursor: pointer; }
.mood-button:hover { filter: brightness(.98); }

.mood-results { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
.mood-gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.mood-card { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; min-height: 180px; display: grid; place-items: center; }
.mood-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mood-opinion { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 1rem; }
.mood-small { 
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  opacity: .85; 
  font-size: .92rem; 
}

@media (max-width: 900px){ .mood-results { grid-template-columns: 1fr; } .mood-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .mood-gallery { grid-template-columns: 1fr; } }

:root { --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1); }

/* PAGE TRANSITIONS */
#page-transition {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 260ms var(--ease-smooth);
}
#page-transition.active { opacity: 0.5; }
body.light #page-transition.active { background:#fff; opacity: 0.6; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition-property: opacity, transform;
  transition-duration: 800ms;
  transition-timing-function: var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal.in-view { opacity: 1; transform: translate3d(0,0,0); }

/* Lighter animation for large containers (smoother) */
.reveal-soft {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 900ms var(--ease-smooth), transform 900ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
  contain: paint;
  backface-visibility: hidden;
}
.reveal-soft.in-view { opacity: 1; transform: translate3d(0,0,0); }

/* Ultra-smooth (scale + longer duration, minimal distance) */
.reveal-ultra {
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.992);
  transition: opacity 1100ms var(--ease-smooth),
              transform 1100ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal-ultra.in-view { opacity: 1; transform: translate3d(0,0,0) scale(1); }

/* Immediate show (no transition) for above-the-fold */
.reveal.immediate,
.reveal-soft.immediate,
.reveal-ultra.immediate { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  #page-transition { transition: none; }
  .reveal, .reveal-soft, .reveal-ultra { opacity: 1; transform: none; transition: none; }
}

/* Scramble text effect */
.scramble { cursor: default; white-space: pre-wrap; }
.char { display: inline-block; will-change: contents; }
.char.space { display: inline-block; }

/* ===== MENU PAGE STYLES ===== */
body.menu-page {
  overflow-y: auto;
  min-height: 100vh;
}

.menu-content {
  padding: 3rem 0;
  text-align: center;
}

.menu-title {
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #d3d3d3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 2rem;
  text-decoration: none;
  color: #d3d3d3;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  display: block;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.menu-item-special {
  background: rgba(211, 211, 211, 0.1);
  border-color: rgba(211, 211, 211, 0.3);
}

.menu-item-special:hover {
  background: rgba(211, 211, 211, 0.15);
  border-color: rgba(211, 211, 211, 0.4);
}

.menu-item-content h3 {
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item-content p {
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

.btn-back {
  background-color: #d3d3d3;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  font-family: 'SAIBA 45', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-back:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Menu page responsive */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .menu-item {
    padding: 1.5rem;
  }
  
  .menu-item-content h3 {
    font-size: 1.25rem;
  }
  
  .menu-title {
    margin-bottom: 2rem;
  }
}

/* CAREERS PAGE */
.careers-hero { 
  text-align: center; 
  padding: 3rem 0 1rem; 
}
.careers-hero h2 { 
  font-size: clamp(36px, 6.5vw, 72px); 
}
.careers-hero p { 
  margin-top: .5rem; 
  opacity: .92; 
}

.careers-backdrop {
  background: radial-gradient(1400px 500px at 20% -10%, rgba(255,255,255,0.14), transparent),
              radial-gradient(1000px 400px at 80% 10%, rgba(255,255,255,0.12), transparent),
              linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0));
  border-radius: 14px;
  padding: 1.5rem;
}

.careers-content {
  margin-top: 2rem;
}

.job-posting {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.job-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.job-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.job-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.job-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.job-details {
  display: grid;
  gap: 1.5rem;
}

.job-section h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.job-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-section li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.job-section li::before {
  content: "•";
  color: #d3d3d3;
  position: absolute;
  left: 0;
}

.job-section p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.job-section a {
  color: #d3d3d3;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.job-section a:hover {
  color: #ffffff;
}

.apply-button-container {
  text-align: center;
  margin-top: 2rem;
}

.apply-button {
  background: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: none;
  font-family: 'Retro Floral', 'SAIBA 45', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.apply-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.apply-button:hover::before {
  left: 100%;
}

.apply-button:hover {
  background: #d3d3d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
              0 0 30px rgba(255, 255, 255, 0.6),
              0 0 60px rgba(255, 255, 255, 0.4),
              0 0 90px rgba(255, 255, 255, 0.3),
              0 0 120px rgba(255, 255, 255, 0.2);
  animation: glow-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(255, 255, 255, 0.6),
                0 0 60px rgba(255, 255, 255, 0.4),
                0 0 90px rgba(255, 255, 255, 0.3),
                0 0 120px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                0 0 40px rgba(255, 255, 255, 0.8),
                0 0 80px rgba(255, 255, 255, 0.6),
                0 0 120px rgba(255, 255, 255, 0.4),
                0 0 160px rgba(255, 255, 255, 0.3);
  }
}

.why-work-with-us {
  margin-top: 3rem;
}

.why-work-with-us h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

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

.benefit-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.benefit-card p {
  line-height: 1.6;
  opacity: 0.9;
}

/* Careers page responsive */
@media (max-width: 900px) {
  .job-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .job-posting {
    padding: 1.5rem;
  }
  
  .job-info h3 {
    font-size: 1.5rem;
  }
  
  .apply-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* NUWA MOBILES SUCCESS STORY SECTION */
.nuwa-mobiles-section {
  margin: 4rem 0;
  padding: 0 1rem;
}

.nuwa-mobiles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nuwa-mobiles-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nuwa-mobiles-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nuwa-mobiles-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nuwa-mobiles-image:hover img {
  transform: scale(1.02);
}

.nuwa-mobiles-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nuwa-mobiles-details h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.nuwa-mobiles-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CAFE AROMA SUCCESS STORY SECTION */
.cafe-aroma-section {
  margin: 4rem 0;
  padding: 0 1rem;
}

.cafe-aroma-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cafe-aroma-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cafe-aroma-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cafe-aroma-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.cafe-aroma-image:hover img {
  transform: scale(1.02);
}

.cafe-aroma-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cafe-aroma-details h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.cafe-aroma-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.checkmark {
  font-size: 1.2rem;
  color: #4ade80;
  flex-shrink: 0;
}

.contact-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.contact-info, .social-links {
  margin-bottom: 1rem;
}

.contact-info p, .social-links p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-info a, .social-links a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover, .social-links a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.hashtags {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid #60a5fa;
}

/* Mobile Responsive for NUWA Mobiles Section */
@media (max-width: 768px) {
  .nuwa-mobiles-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .nuwa-mobiles-details h3 {
    font-size: 1.6rem;
  }
  
  .contact-section {
    padding: 1rem;
  }
  
  .contact-section h4 {
    font-size: 1.1rem;
  }
  
  .hashtags {
    font-size: 0.8rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .nuwa-mobiles-section {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }
  
  .nuwa-mobiles-content {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .nuwa-mobiles-details h3 {
    font-size: 1.4rem;
  }
  
  .success-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Mobile Responsive for Cafe AROMA Section */
@media (max-width: 768px) {
  .cafe-aroma-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .cafe-aroma-details h3 {
    font-size: 1.6rem;
  }
  
  .contact-section {
    padding: 1rem;
  }
  
  .contact-section h4 {
    font-size: 1.1rem;
  }
  
  .hashtags {
    font-size: 0.8rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cafe-aroma-section {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }
  
  .cafe-aroma-content {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .cafe-aroma-details h3 {
    font-size: 1.4rem;
  }
  
  .success-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

