/* --- 1. GLOBAL SETTINGS --- */
:root {
  --primary-blue: #002b5c;
  --accent-blue: #38BDF8;
  --dark-bg: #0F172A;
  --text-muted: #94A3B8;
}
body { margin: 0; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Logo & Header Fix */
.logo img { max-width: 250px; height: auto; transition: transform 0.3s; }
.site-header { padding: 15px 0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.main-nav a { margin-left: 20px; text-decoration: none; color: var(--primary-blue); font-weight: 600; }
/* --- 2. HERO VIDEO SECTION --- */
.hero { position: relative; height: 70vh; overflow: hidden; display: flex; align-items: center; color: white; text-align: center; }
.hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-video-wrapper iframe { width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 43, 92, 0.6); z-index: 0; }
.hero-content { position: relative; z-index: 1; width: 100%; }
.btn { padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; margin: 10px; }
.btn-primary { background: var(--accent-blue); color: #0F172A; }
.btn-outline { border: 2px solid white; color: white; }
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-brand {
  display: block;
  font-size: 4rem;
  letter-spacing: 4px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 750px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
/* --- 3. SUPPLY & GALLERY GRIDS --- */
.supply-grid-section, .gallery-section { background: var(--dark-bg); padding: 80px 0; color: white; text-align: center; }
.supply-grid, .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.supply-card, .gallery-item {
  background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden;
  transition: 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.supply-card:hover, .gallery-item:hover { transform: translateY(-10px); border-color: var(--accent-blue); }
.supply-image-wrapper, .gallery-item { height: 250px; cursor: pointer; }
.supply-image-wrapper img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
/* --- 4. LIGHTBOX --- */
.od-lightbox {
  display: none; position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); justify-content: center; align-items: center;
}
.od-lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 80vh; border-radius: 10px; }
.nav-btn { position: absolute; top: 50%; color: white; font-size: 40px; cursor: pointer; padding: 20px; user-select: none; }
.prev-btn { left: 10px; } .next-btn { right: 10px; }
.close-btn { position: absolute; top: 20px; right: 30px; color: white; font-size: 50px; cursor: pointer; }
/* --- 5. FOOTER --- */
.site-footer {
  background: var(--dark-bg);
  color: var(--text-muted);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
}
/* Left column: contact info */
.footer-contact h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.footer-info-item a {
  color: var(--accent-blue);
  text-decoration: none;
}
.footer-info-item a:hover { text-decoration: underline; }
.fi-icon { font-size: 1.2rem; }
/* Right column: contact form card */
.footer-form-container {
  background: #1e293b;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.ocean-depot-form .form-group {
  margin-bottom: 16px;
}
.ocean-depot-form label {
  display: block;
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 500;
}
.ocean-depot-form input,
.ocean-depot-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.95rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.ocean-depot-form input:focus,
.ocean-depot-form textarea:focus {
  border-color: var(--accent-blue);
}
.ocean-depot-form textarea { resize: vertical; }
/* Inline rows if you need two fields side by side */
.ocean-depot-form .form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* ReCAPTCHA centering */
.recaptcha-container {
  margin: 20px 0;
  background: white;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
}
/* The Submit Button */
.btn-blue-submit {
  background-color: #2563EB;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s ease, opacity 0.2s ease;
  width: 100%;
}
.btn-blue-submit:hover {
  background-color: #1D4ED8;
  opacity: 0.9;
}
/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 0.82rem;
  color: #475569;
  text-align: left;
}
/* Mobile Optimization */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; text-align: center; gap: 15px; }
  .main-nav a { margin: 0 10px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-form .form-row-inline {
    grid-template-columns: 1fr;
  }
}
/* WhatsApp & Email link white text */
.footer-info-item a {
  color: #ffffff !important;
  text-decoration: none;
}
.footer-info-item a:hover {
  text-decoration: underline;
  opacity: 0.85;
}
/* Social Media Buttons Card */
.card {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 20px;
}
/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 1s;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
}
/* linkedin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}
.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}
.socialSvg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.socialSvg path {
  fill: rgb(255, 255, 255);
}
.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}