﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f7fb;
  --bg-light: #ffffff;
  --bg-dark: #111827;
  --text: #111827;
  --text-muted: #6b7280;
  --primary: #f7931a;
  --primary-soft: #fff4e5;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.09);
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: #f9fafb;
}

/* Header */
.header {
  position: relative;
  z-index: 99;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo size (medium) */
.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  font-size: 0.92rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-list a:hover {
  color: var(--text);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(248, 148, 31, 0.4);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, opacity 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 148, 31, 0.5);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 10px 24px rgba(248, 148, 31, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text);
  box-shadow: none;
}

.btn-outline:hover {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: transparent;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  display: none;
  z-index: 95;
}

.mobile-menu.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 1.2rem;
}

.mobile-menu a {
  text-decoration: none;
  color: #f9fafb;
  font-size: 1.15rem;
}

/* Hero */
.hero {
  padding: 5.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 540px;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--primary);
}

.motto {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

/* Hero stats – simple, non-card style */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.stat {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.stat-number {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero card */
.hero-card {
  background: radial-gradient(circle at top left, #fff7ed 0, #ffffff 60%);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(248, 148, 31, 0.18);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.hero-list {
  list-style: none;
  margin-bottom: 1.1rem;
}

.hero-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.hero-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.1rem;
}

.hero-note {
  font-size: 0.88rem;
  color: #b45309;
}

/* About / split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.list-check,
.list-dot {
  list-style: none;
  margin-top: 0.75rem;
}

.list-check li,
.list-dot li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.list-check li::before {
  content: "✔";
  color: #16a34a;
  margin-right: 0.5rem;
}

.list-dot li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.4rem;
}

.about-card {
  background-color: #111827;
  color: #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

/* Pill cards */
.pill-card {
  background-color: var(--bg-light);
  padding: 1.2rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

.pill-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

/* Testimonials (kept for future) */
.testimonial-text {
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.testimonial-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text p {
  color: #e5e7eb;
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.list-contact {
  list-style: none;
  font-size: 0.9rem;
}

.list-contact li {
  margin-bottom: 0.4rem;
}

/* Form */
.contact-form {
  background-color: #020617;
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  background-color: #020617;
  color: #f9fafb;
  font: inherit;
  font-size: 0.88rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.footer {
  padding: 1.8rem 0;
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  background-color: #020617;
  color: #9ca3af;
}

.footer-inner {
  text-align: center;
  font-size: 0.82rem;
}

.footer-sub {
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .nav-list,
  .btn-nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pill-card {
    border-radius: var(--radius-xl);
  }
}
/* --- Why You Might Need HappyCrew (2x2 image layout) --- */

.why-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.why-image-wrap {
  width: 100%;
  height: 230px;          /* controls how tall the images look */
  overflow: hidden;
}

.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-item:hover .why-image-wrap img {
  transform: scale(1.03);
}

.why-text {
  padding: 1.4rem 1.6rem 1.6rem;
}

.why-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-text p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.55;
}

/* On mobile, switch back to 1 column */
@media (max-width: 900px) {
  .why-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

