/* ===== Brand Variables ===== */
:root {
  --hr-blue:    #0d2b5e;
  --hr-orange:  #f47c20;
  --hr-light:   #f8f9fa;
  --hr-dark:    #1a1a2e;
  --hr-border:  #dee2e6;
  --hr-shadow:  0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Global ===== */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
}

a {
  color: var(--hr-orange);
  text-decoration: none;
}
a:hover {
  color: #d06010;
}

/* ===== Navbar ===== */
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff !important;
}
.navbar-brand span {
  color: var(--hr-orange);
}

.navbar-custom {
  background-color: var(--hr-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--hr-orange) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== Buttons ===== */
.btn-handyren {
  background-color: var(--hr-orange);
  border-color: var(--hr-orange);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.1s;
}
.btn-handyren:hover {
  background-color: #d06010;
  border-color: #d06010;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-handyren {
  border: 2px solid var(--hr-orange);
  color: var(--hr-orange);
  font-weight: 600;
  padding: 0.6rem 1.75rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-outline-handyren:hover {
  background-color: var(--hr-orange);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--hr-blue) 0%, #1a3a6e 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(244, 124, 32, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 span {
  color: var(--hr-orange);
}
.hero p.lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-badges .badge {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  margin: 0.2rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}
.section-divider {
  width: 50px;
  height: 4px;
  background-color: var(--hr-orange);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.section-divider.start {
  margin-left: 0;
}

/* ===== Service Cards ===== */
.service-card {
  border: 1px solid var(--hr-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  background: #fff;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hr-shadow);
  border-color: var(--hr-orange);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  background-color: rgba(13, 43, 94, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.7rem;
  color: var(--hr-blue);
  transition: background-color 0.2s, color 0.2s;
}
.service-card:hover .icon {
  background-color: var(--hr-orange);
  color: #fff;
}
.service-card h5 {
  font-weight: 700;
  color: var(--hr-blue);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ===== Feature/USP Items ===== */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--hr-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.feature-item h6 {
  font-weight: 700;
  color: var(--hr-blue);
  margin-bottom: 0.2rem;
}
.feature-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--hr-orange) 0%, #e06010 100%);
  color: #fff;
  padding: 70px 0;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
}
.btn-cta-white {
  background: #fff;
  color: var(--hr-orange);
  font-weight: 700;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.btn-cta-white:hover {
  background: transparent;
  color: #fff;
}

/* ===== Contact Page ===== */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--hr-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.contact-info-item h6 {
  font-weight: 700;
  color: var(--hr-blue);
  margin-bottom: 0.1rem;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ===== Forms ===== */
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--hr-shadow);
  border: 1px solid var(--hr-border);
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.35rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--hr-orange);
  box-shadow: 0 0 0 0.2rem rgba(244, 124, 32, 0.15);
}

/* ===== Page Header Banner ===== */
.page-header {
  background: linear-gradient(135deg, var(--hr-blue) 0%, #1a3a6e 100%);
  color: #fff;
  padding: 60px 0 50px;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
}
.page-header p {
  opacity: 0.85;
  font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--hr-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 50px 0 20px;
}
.footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--hr-orange);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 0.45rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

/* ===== Honeypot (anti-bot) ===== */
/* Positioned off-screen — invisible to real users, visible to bots */
.hp-field-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Alerts / Messages ===== */
.alert {
  border-radius: 8px;
  font-weight: 500;
}
