/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Open+Sans&display=swap');

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f4f6f9;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.header {
  background: #0B1F3A;
  padding: 15px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  background: white;   /* FIX visibility */
  padding: 3px;
  border-radius: 5px;
}

.logo-box h2 {
  color: white;
  font-size: 18px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover {
  color: #1E90FF;
}

/* HERO */
.hero {
  height: 80vh;
  background: url('../images/ship.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(11,31,58,0.7);
  padding: 40px;
  text-align: center;
  color: white;
}

.btn {
  background: #1E90FF;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-radius: 5px;
}

/* SECTIONS */
section {
  padding: 60px 0;
}

/* SERVICES BOX */
.service-box {
  background: white;
  padding: 20px;
  margin: 15px;
  display: inline-block;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CREW FORM */
.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.grid-form > div {
  display: flex;
  flex-direction: column;
}

.grid-form input,
.grid-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.grid-form button {
  grid-column: span 2;
  padding: 12px;
  background: #0B1F3A;
  color: white;
  border: none;
  border-radius: 5px;
}

/* CONTACT */
.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

/* FOOTER */
footer {
  background: #0B1F3A;
  color: white;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media(max-width:768px){
  .grid-form {
    grid-template-columns: 1fr;
  }
}

/* ===== CREW FORM UPGRADE ===== */

/* TITLE */
.form-title {
  color: #1E90FF;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 900px;
}

/* FORM BOX */
.grid-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* INPUT IMPROVEMENT */
.grid-form input,
.grid-form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.grid-form input:focus,
.grid-form select:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 5px rgba(30,144,255,0.2);
  outline: none;
}

/* LABEL */
.grid-form label {
  font-weight: 600;
  margin-bottom: 6px;
}

.exp-group {
  display: flex;
  gap: 15px;
  width: 100%;
}

.exp-item {
  flex: 1;
}

.exp-item select {
  width: 100%;
  display: block;
}

.sub-label {
  font-size: 13px;
  color: #1E90FF;
  margin-bottom: 5px;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* STICKY HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.header.scrolled {
  background: #0B1F3A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 10px 0;
}

.header.scrolled {
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(5px);
}