/* ========================================
   PEOPLE & CULTURE AT WORK
   Master Stylesheet — Dark Brown + Orange
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-brown: #190D05;
  --color-brown-light: #2C1810;
  --color-orange: #D25C11;
  --color-orange-light: #E67729;
  --color-orange-dark: #A84808;
  --color-cream: #FFF8F0;
  --color-cream-dark: #FBEEDD;
  
  --color-dark: #190D05;
  --color-gray-900: #2D1F17;
  --color-gray-700: #5A4A3F;
  --color-gray-500: #8B7B70;
  --color-gray-300: #D4C8BE;
  --color-gray-100: #F5EFE8;
  --color-white: #FFFFFF;
  
  --gradient-orange: linear-gradient(135deg, #D25C11 0%, #A84808 100%);
  --gradient-brown: linear-gradient(135deg, #2C1810 0%, #190D05 100%);
  --gradient-warm: linear-gradient(135deg, #D25C11 0%, #190D05 100%);
  --gradient-hero: linear-gradient(135deg, rgba(25,13,5,0.95) 0%, rgba(44,24,16,0.95) 100%);
  
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --container-max: 1280px;
  --section-padding: 6rem 0;
  
  --shadow-sm: 0 1px 3px rgba(25,13,5,0.08);
  --shadow-md: 0 4px 12px rgba(25,13,5,0.10);
  --shadow-lg: 0 10px 30px rgba(25,13,5,0.15);
  --shadow-xl: 0 20px 50px rgba(25,13,5,0.20);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --color-teal: #D25C11;
  --color-teal-dark: #A84808;
  --color-teal-light: #FFF8F0;
  --gradient-teal: linear-gradient(135deg, #2C1810 0%, #190D05 100%);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-gray-900);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--color-orange-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--color-gray-700); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-padding); }
.section-alt { background: var(--color-cream); }

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(210,92,17,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(210,92,17,0.5);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-brown);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(25,13,5,0.3);
}

.btn-secondary:hover {
  background: var(--color-brown-light);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-brown);
  border-color: var(--color-brown);
}

.btn-outline:hover {
  background: var(--color-brown);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-brown);
}

.btn-white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  color: var(--color-brown);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-gray-100);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 55px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  color: var(--color-gray-900);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-orange);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--color-orange); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px; height: 3px;
  background: var(--color-dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #FFF8F0 0%, #FBEEDD 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--gradient-orange);
  border-radius: 50%;
  opacity: 0.08;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: var(--gradient-brown);
  border-radius: 50%;
  opacity: 0.08;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .section-tag {
  background: rgba(210,92,17,0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.hero-title { margin: 1.5rem 0; line-height: 1.15; }

.hero-title .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-gray-700);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(25,13,5,0.1);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-top: 0.35rem;
}

.hero-image { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gradient-brown);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.trust-title {
  text-align: center;
  color: var(--color-gray-500);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gray-500);
  font-size: 1.1rem;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-logo:hover { opacity: 1; color: var(--color-brown); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: var(--color-cream);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-orange);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.service-card p { color: var(--color-gray-500); font-size: 0.95rem; margin-bottom: 1.25rem; }

.service-link {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-link:hover { color: var(--color-brown); gap: 0.5rem; }

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-block {
  background: var(--gradient-brown);
  aspect-ratio: 1;
  border-radius: 20px;
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-block::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(210,92,17,0.15);
  border-radius: 50%;
}

.about-image-block h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.about-image-block p {
  color: rgba(255,255,255,0.9);
  position: relative;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-tag { color: var(--color-orange); }
.about-content h2 { margin-bottom: 1.5rem; }

.about-features { list-style: none; margin: 2rem 0; }

.about-features li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--color-gray-700);
}

.about-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.75rem;
  width: 22px; height: 22px;
  background: var(--gradient-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-number {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(210,92,17,0.35);
}

.process-step h4 { margin-bottom: 0.75rem; color: var(--color-dark); }
.process-step p { font-size: 0.95rem; color: var(--color-gray-500); }

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 2rem;
  font-size: 5rem;
  color: var(--color-orange);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  color: var(--color-gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.author-name { font-weight: 700; color: var(--color-dark); }
.author-title { font-size: 0.85rem; color: var(--color-gray-500); }

.cta-section {
  background: var(--gradient-brown);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: rgba(210,92,17,0.15);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 { color: white; margin-bottom: 1rem; }

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--color-brown);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-orange);
  color: white;
  transform: translateY(-3px);
}

.footer h5 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-contact-item svg,
.footer-contact-item i {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--color-orange); }

.page-header {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #FFF8F0 0%, #FBEEDD 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--gradient-orange);
  border-radius: 50%;
  opacity: 0.08;
}

.page-header h1 { margin-bottom: 1rem; position: relative; }

.page-header p {
  font-size: 1.15rem;
  color: var(--color-gray-700);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-gray-500);
  position: relative;
}

.breadcrumb a { color: var(--color-orange); }

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.js-loaded .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .js-loaded .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.faq-item { transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-md) !important; }

.faq-item > div:not(.faq-question) {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0 !important;
}

.faq-item.active > div:not(.faq-question) {
  max-height: 500px;
  margin-top: 1rem !important;
}

.faq-item .faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

/* Cookie Notice */
#cookie-notice {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  border: 2px solid var(--color-orange);
}

@media (max-width: 1024px) {
  .hero-container, .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 4rem 0; }
  
  .nav-menu {
    position: fixed;
    top: 85px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition);
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }
  
  .nav-menu.active { transform: translateY(0); }
  .hamburger { display: block; }
  .nav-cta .btn:not(.mobile-visible) { display: none; }
  .hero { padding: 8rem 0 4rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons, .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .service-card { padding: 2rem 1.5rem; }
}