/* ============================================================
   SHIVARO PRIME HR SOLUTIONS — Global Stylesheet
   Colour Theme: Teal (#00647B), White, Black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --teal:        #00647B;
  --teal-mid:    #007d96;
  --teal-light:  #00a0bb;
  --teal-pale:   #e6f4f7;
  --teal-dark:   #004d5e;
  --black:       #0a0a0a;
  --black-soft:  #1a1a1a;
  --black-mid:   #2c2c2c;
  --white:       #ffffff;
  --off-white:   #f7fbfc;
  --gray-light:  #f0f5f6;
  --gray-mid:    #7a9098;
  --gray-dark:   #3a4d54;
  --text:        #1a2e33;
  --shadow:      0 4px 24px rgba(0,100,123,0.10);
  --shadow-lg:   0 12px 48px rgba(0,100,123,0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,100,123,0.15);
  box-shadow: 0 2px 12px rgba(0,100,123,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--teal-dark);
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--teal-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--teal-mid) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,100,123,0.3) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(0,100,123,0.12);
}

.mobile-menu a {
  color: var(--gray-dark);
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,100,123,0.07);
  display: block;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--teal); padding-left: 8px; }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 13px !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px !important;
  border-bottom: none !important;
}

/* ===================== LAYOUT UTILITIES ===================== */
section { padding: 80px 20px; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--black-soft);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray-dark);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,100,123,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  background: var(--teal-dark);
  padding: 20px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  align-items: center;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.trust-chip-dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--teal-dark);
  padding: 130px 20px 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(0,160,187,0.1) 0%, transparent 50%),
    linear-gradient(rgba(0,160,187,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,160,187,0.04) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 .accent { color: var(--teal-light); }

.page-hero p {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--teal-light); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* ===================== FOOTER ===================== */
footer {
  background: #42858d;
  padding: 56px 20px 28px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  margin: 16px 0 20px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.social-link:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgb(255, 255, 255);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--teal-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgb(255, 255, 255);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--teal-light); }

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px; height: 28px;
  fill: white;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  section { padding: 56px 16px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }
  .nav-inner { height: 60px; }
  .logo-name { font-size: 14px; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-whatsapp {
    width: auto;
    min-width: 220px;
  }
}