/* Pacific IT Services — Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --cyan:       #00BCD4;
  --cyan-dark:  #0097A7;
  --cyan-glow:  #00E5FF;

  /* Backgrounds */
  --bg:         #0A0A0A;
  --surface:    #141414;
  --card:       #1C1C1C;
  --card2:      #222222;

  /* Borders */
  --border:     #2A2A2A;
  --border2:    #333333;

  /* Text */
  --white:      #FFFFFF;
  --grey300:    #E0E0E0;
  --grey500:    #9E9E9E;
  --grey700:    #616161;

  /* Semantic */
  --green:      #00C853;
  --red:        #FF5252;
  --amber:      #FFB300;

  /* Spacing & shape */
  --radius:     12px;
  --radius-sm:  8px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--grey300);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body { font-size: 15px; line-height: 1.6; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-glow); }

img { max-width: 100%; }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.hero-headline {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0 0 12px;
}

.section-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--white);
  margin: 0 0 8px;
}

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}

.body-text { font-size: 15px; line-height: 1.6; color: var(--grey500); }

.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey300);
  display: block;
  margin-bottom: 6px;
}

.hint { font-size: 11.5px; color: var(--grey700); margin-top: 4px; }

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}

.site-logo .bar {
  width: 4px;
  height: 20px;
  background: var(--cyan);
  border-radius: 2px;
}

.nav-items { display: flex; gap: 20px; align-items: center; }
.nav-items a { font-size: 14px; font-weight: 500; color: var(--grey300); }
.nav-items a:hover { color: var(--cyan); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--cyan);
  color: #000;
}
.btn-primary:hover:not(:disabled) { background: var(--cyan-glow); }
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--grey300);
}
.btn-outline:hover { border-color: var(--grey500); color: var(--white); }

.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: 0.85; }

.btn-block { width: 100%; }

/* Info boxes */
.info-box {
  border-left: 3px solid var(--cyan);
  background: rgba(0, 188, 212, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--grey300);
  margin: 16px 0;
}
.info-box-amber { border-left-color: var(--amber); background: rgba(255, 179, 0, 0.08); }
.info-box-green { border-left-color: var(--green); background: rgba(0, 200, 83, 0.08); }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.badge-pending { background: rgba(255,179,0,.12); color: var(--amber); }
.badge-sent    { background: rgba(0,200,83,.12); color: var(--green); }
.badge-accepted{ background: rgba(0,188,212,.12); color: var(--cyan); }
.badge-lost    { background: rgba(255,82,82,.12); color: var(--red); }

/* Form field basics reused across pages */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
textarea { resize: vertical; min-height: 90px; }

::placeholder { color: var(--grey700); }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--grey700);
  font-size: 12.5px;
  margin-top: 48px;
}
