/* Reset & global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #F5F5F5;
    color: #333;
    line-height: 1.6;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text img {
    height: 50px;
    width: auto;
}

.company-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #001f3f; /* navy tua */
    letter-spacing: 1.5px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #800000; /* maroon tua */
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #b22222; /* lebih terang */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;  /* 16:9 aspect ratio width relative to height */
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(0.5);
}
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.6);
}

.btn-primary {
    padding: 12px 25px;
    background-color: #800000;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b22222;
}

/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.service-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background-color: #FFECEC;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}
main {
    flex: 1;
}
.apply-card{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    max-width:800px;
    margin:0 auto;
}

.job-summary{
    background:#f8f9fb;
    border-left:4px solid #b30000;
    padding:20px;
    margin-bottom:30px;
    border-radius:8px;
}

.job-summary p{
    margin-bottom:8px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
}

.form-control:focus{
    outline:none;
    border-color:#b30000;
}

.form-actions{
    margin-top:30px;
    display:flex;
    gap:10px;
}

.btn-secondary{
    background:#6c757d;
    color:white;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
}

.btn-secondary:hover{
    background:#555;
}