/* palette: hot-pink-forest */
:root {
  --primary-color: #B0135A;
  --secondary-color: #CC1C70;
  --accent-color: #1B5E20;
  --background-color: #FDE8F2;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: clamp(14px, 1.6vw, 17px);
}

h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: var(--dark-color);
}

/* Typography scale */
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

/* CORPORATE Preset Rules */
section {
  padding: 48px 16px;
  margin: 0;
}
@media (min-width: 1024px) {
  section {
    padding: 72px 24px;
  }
}
section + section {
  border-top: 1px solid #F3F4F6;
}

.card {
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 12px 24px;
  min-height: 44px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Header & Menu CSS-only */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
  z-index: 1000;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 999;
  padding: 24px;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: var(--shadow-md);
}
.site-nav a {
  font-family: var(--main-font);
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--primary-color);
}
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  transition: all 0.3s ease;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(9px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    padding: 0;
    border-bottom: none;
    background: transparent;
  }
}

/* Cinematic Bottom Left Hero */
.hero {
  position: relative;
  min-height: 83vh;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: flex-end;
  padding: 48px 16px;
}
@media (min-width: 768px) {
  .hero {
    background-attachment: fixed;
    padding: 64px 48px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 750px;
  width: 100%;
}
.hero-tagline {
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--background-color);
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.hero-title {
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 16px;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
}

/* Sections Styling Helpers */
.section-kicker {
  display: block;
  font-family: var(--main-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.section-title {
  margin-bottom: 16px;
  color: var(--dark-color);
}
.section-desc {
  color: var(--text-color);
  max-width: 650px;
  margin: 0 auto;
}
.section-title.text-white,
.section-desc.text-gray-300 {
  color: #ffffff;
}

/* Scroll-reveal Animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 25%;
}

/* Stats Counter Animations (Chrome 115+) */
@property --count {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}
.stat-num {
  --target: 100;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
  font-family: var(--main-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--background-color);
}
.stat-num::after {
  content: counter(n);
}
@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}
.stat-suffix {
  font-family: var(--main-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--background-color);
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.bg-dark {
  background-color: var(--dark-color);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 999px;
}
.badge-red {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.badge-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Grid Cards Details */
.icon-wrapper {
  background-color: var(--background-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.grid-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.grid-card-text {
  font-size: 0.88rem;
  color: var(--text-color);
}

/* Split Testimonial Layout */
.image-overlay-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

/* Q&A Section Styling */
.question-title {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}
.question-answer {
  color: var(--text-color);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(176, 19, 90, 0.1);
}

/* Footer rules */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer a:hover {
  color: #ffffff;
}