/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== COLORS ===== */
:root {
  --primary: #0d47a1;
  --primary-dark: #082e6a;
  --accent: #ff6f00;
  --accent-light: #ffa040;
  --text: #333;
  --text-light: #666;
  --light-bg: #f4f6f8;
  --white: #fff;
  --dark: #1a1a2e;
}

/* ===== HEADER / TOPBAR ===== */
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a {
  color: var(--white);
  font-size: 1rem;
  transition: color 0.3s;
}
.topbar-right a:hover { color: var(--accent); }

.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(26,26,46,0.88)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
}
.hero-about {
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(26,26,46,0.88)),
    url('https://images.unsplash.com/photo-1592838064575-70ed626d3a0e?w=1920&q=80') center/cover no-repeat;
}
.hero-services {
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(26,26,46,0.88)),
    url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920&q=80') center/cover no-repeat;
}
.hero-apply {
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(26,26,46,0.88)),
    url('https://images.unsplash.com/photo-1586206670130-4c6d8e646c9a?w=1920&q=80') center/cover no-repeat;
}
.hero-contact {
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(26,26,46,0.88)),
    url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=1920&q=80') center/cover no-repeat;
}
.hero-privacy {
  min-height: 300px;
  background: linear-gradient(135deg, rgba(13,71,161,0.95), rgba(26,26,46,0.9));
}
.hero-content { max-width: 700px; }
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light-bg); }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-dark .section-title h2 { color: var(--white); }
.section-title p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-title p { color: rgba(255,255,255,0.7); }

/* ===== WHY US / VALUE PROPS ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.value-card .icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: var(--white);
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 0.9rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top-color: var(--accent);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(13,71,161,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== CTA / RECRUITMENT BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #e65100);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 2rem; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 24px; opacity: 0.95; }

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; color: var(--text-light); line-height: 1.7; }
.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.facility-card {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.facility-card .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.facility-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.facility-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== PARTNERS ===== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
.partner-item {
  background: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: box-shadow 0.3s;
}
.partner-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ===== SERVICES PAGE DETAIL ===== */
.mission-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.mission-block h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 16px; }
.mission-block p { color: var(--text-light); line-height: 1.7; }

.shipping-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.shipping-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.shipping-card img { width: 100%; height: 220px; object-fit: cover; }
.shipping-card-body { padding: 24px; }
.shipping-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); }
.shipping-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 30px 24px;
}
.feature-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; opacity: 0.85; }

/* ===== APPLY / CAREERS ===== */
.career-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.career-tab {
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
  background: transparent;
  font-size: 0.95rem;
}
.career-tab.active, .career-tab:hover {
  background: var(--primary);
  color: var(--white);
}
.career-panel { display: none; }
.career-panel.active { display: block; }

.compensation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.comp-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.comp-card h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 16px; }
.comp-list { display: flex; flex-direction: column; gap: 12px; }
.comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.comp-item i { color: var(--accent); font-size: 1.1rem; }
.comp-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
.comp-highlight .amount { font-size: 2.2rem; font-weight: 700; margin-bottom: 6px; }
.comp-highlight p { opacity: 0.9; }

/* ===== APPLICATION FORM ===== */
.form-section { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; color: var(--primary); }
.contact-card p { font-size: 0.9rem; color: var(--text-light); }
.contact-form-wrapper {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrapper h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--primary); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--light-bg);
  padding: 50px 0;
  text-align: center;
}
.newsletter h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--primary); }
.newsletter p { color: var(--text-light); margin-bottom: 20px; }
.newsletter-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }

/* ===== PRIVACY PAGE ===== */
.privacy-content h2 { font-size: 1.5rem; color: var(--primary); margin: 30px 0 14px; }
.privacy-content h3 { font-size: 1.2rem; color: var(--text); margin: 20px 0 10px; }
.privacy-content p { color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.privacy-content ul { padding-left: 20px; margin-bottom: 14px; }
.privacy-content ul li {
  color: var(--text-light);
  margin-bottom: 6px;
  list-style: disc;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.footer-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .value-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .shipping-types { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .compensation-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .topbar-left { font-size: 0.8rem; }
  .hero { min-height: 450px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
}
