/* =========================
ROOT VARIABLES
========================= */
:root {
  --blue:     #0d6efd;
  --blue-dark:#0a58ca;
  --teal:     #0dcaf0;
  --teal-dark:#0aa8c7;
  --navy:     #001428;
  --navy-mid: #002147;
  --white:    #ffffff;
  --light:    #f4f8fc;
  --light2:   #e8f4fd;
  --muted:    #6c757d;
  --border:   #dee2e6;
  --text:     #212529;
  --accent:   #00d4ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }

/* =========================
TOPBAR
========================= */
.topbar {
  background: linear-gradient(90deg, #001221, #002b5c);
  color: #fff;
  padding: 12px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.topbar i { color: var(--accent); margin-right: 8px; }
.topbar-left span { margin-right: 25px; }

.social-icons i {
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.social-icons i:hover { color: var(--accent); transform: translateY(-3px); }

/* =========================
HEADER
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 7%;
  min-height: 110px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: visible;
}

header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, #0056b3, transparent);
  background-size: 200% 100%;
  animation: lineMove 4s linear infinite;
}

@keyframes lineMove {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* =========================
LOGO
========================= */
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 95px; width: auto; }
.logo h2 {
  font-size: 24px;
  color: #002b5c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================
NAVIGATION
========================= */
nav { display: flex; align-items: center; gap: 18px; }

.menu-item {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
  transition: 0.3s;
}
.menu-item:hover { color: #0056b3; }
.menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #0056b3;
  transition: 0.3s;
}
.menu-item:hover::after { width: 100%; }

/* =========================
DROPDOWN
========================= */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 15px 22px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.3s;
}
.dropdown-menu a:hover {
  background: #f4f9ff;
  color: #0056b3;
  padding-left: 30px;
}

/* =========================
QUOTE BUTTON
========================= */
.quote-btn {
  background: linear-gradient(135deg, #0056b3, #002b5c);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 12px 25px rgba(0,86,179,0.2);
}
.quote-btn:hover { transform: translateY(-3px); }

/* =========================
MENU TOGGLE
========================= */
.menu-toggle { display: none; font-size: 28px; color: #002b5c; cursor: pointer; }

/* =========================
BREADCRUMB BAR (top simple)
========================= */
.breadcrumb-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 12px 40px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-bar a { color: var(--blue); text-decoration: none; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar span { margin: 0 8px; }

/* =========================
BREADCRUMB SECTION
========================= */
.breadcrumb-section {
  background: #f5f7fb;
  padding: 25px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.breadcrumb-container {
  max-width: 1200px;
  margin: auto;
}
.breadcrumb-section h1 {
  font-size: 32px;
  color: #001428;
  margin-bottom: 10px;
  font-weight: 700;
}
.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.breadcrumb-links a {
  text-decoration: none;
  color: #0d6efd;
  transition: 0.3s;
}
.breadcrumb-links a:hover { color: #0dcaf0; }
.breadcrumb-links span { color: #888; }
.active-breadcrumb { color: #333 !important; font-weight: 600; }

/* =========================
ABOUT SECTION
========================= */
.about-section {
  padding: 90px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.sec-tag {
  display: inline-block;
  background: #e8f4fd;
  color: #0d6efd;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #001428;
  margin-bottom: 25px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.about-content h2 span { color: #0d6efd; }

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #6c757d;
  margin-bottom: 18px;
}

.about-btns {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.about-btn {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.primary-btn {
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  color: #fff;
}
.primary-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(13,110,253,0.25); }

.outline-btn {
  border: 2px solid #0d6efd;
  color: #0d6efd;
  background: #fff;
}
.outline-btn:hover { background: #0d6efd; color: #fff; }

.about-image { position: relative; }

.image-box {
  background: #f5f9ff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.image-box::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  opacity: 0.08;
}
.image-box img { width: 100%; display: block; position: relative; z-index: 2; }

/* =========================
QUICK OVERVIEW SECTION
========================= */
.quick-overview-section {
  position: relative;
  padding: 90px 0;
  background: #f4f8ff;
  overflow: hidden;
}
.quick-overview-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0,91,234,0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}
.quick-overview-section::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(0,91,234,0.04);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}
.section-heading .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #005bea;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-heading h2 span { color: #005bea; }
.section-heading p {
  max-width: 720px;
  margin: auto;
  color: #5d6678;
  font-size: 16px;
  line-height: 1.8;
}

.overview-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.overview-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #dfe9ff;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.overview-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: #005bea;
  transform: scaleX(0);
  transition: 0.4s;
  transform-origin: left;
}
.overview-item:hover::before { transform: scaleX(1); }
.overview-item:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.10); }

.overview-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, #005bea, #007bff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,91,234,0.25);
}
.overview-content h4 { font-size: 21px; color: #0b1c39; margin-bottom: 10px; font-weight: 700; }
.overview-content p { margin: 0; color: #5d6678; line-height: 1.7; font-size: 15px; }

/* =========================
TECHNICAL SPEC TABLE
========================= */
.technical-spec-section {
  padding: 90px 0;
  background: #f5f9ff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.sub-title {
  font-size: 14px;
  font-weight: 700;
  color: #0b5ed7;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 42px;
  color: #0a2540;
  font-weight: 800;
  margin-bottom: 15px;
}
.section-title h2 span { color: #0b5ed7; }
.section-title p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.table-responsive { overflow-x: auto; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.spec-table thead { background: #0b5ed7; color: #fff; }
.spec-table thead th { padding: 16px 18px; text-align: left; font-size: 16px; }
.spec-table tbody td { padding: 14px 18px; border-bottom: 1px solid #eee; color: #333; font-size: 15px; }
.spec-table tbody tr:nth-child(even) { background: #f8fbff; }
.spec-table tbody tr:hover { background: #eef5ff; }

/* =========================
ENGINEERING / FEATURES SECTION
========================= */
.winch-features-section { width: 100%; overflow: hidden; }

.engineering-section {
  padding: 90px 0;
  background: #f4f8ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid #e6eefc;
  transition: 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.feature-card h3 { font-size: 18px; color: #0a2540; margin-bottom: 10px; }
.feature-card p { margin: 0; color: #555; font-size: 15px; line-height: 1.6; }

.full-width {
  grid-column: 1 / -1;
  background: #0b5ed7;
  color: #fff;
}
.full-width h3 { color: #fff; }

/* =========================
SECTION HELPERS (shared)
========================= */
.sec-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-tag2 {
  display: inline-block;
  background: var(--light2);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.sec-title2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-title2 em { color: var(--blue); font-style: normal; }
.sec-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  margin: 18px auto 0;
}

/* =========================
WHAT YOU GET
========================= */
.get-bg { background: var(--navy); }
.get-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.get-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  transition: all .3s;
}
.get-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.get-card i { font-size: 32px; color: var(--teal); margin-bottom: 16px; display: block; }
.get-card h5 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.get-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* =========================
STATS
========================= */
.stats-bg { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 50px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 32px; color: rgba(255,255,255,.7); margin-bottom: 14px; display: block; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 8px; font-weight: 500; }

/* =========================
CTA
========================= */
.cta-bg {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
  text-align: center;
}
.cta-bg h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.cta-bg h2 em { color: var(--blue); font-style: normal; }
.cta-bg p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(13,110,253,.3);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,110,253,.4); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  padding: 13px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--blue);
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

/* =========================
CONTENT AREA
========================= */
.content { max-width: 1200px; margin: 40px auto; padding: 0 40px; }
.content p { font-size: 15px; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }

/* =========================
FOOTER
========================= */
footer { background: var(--navy); padding: 60px 40px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.fc h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.fc p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.75; }
.fc ul { list-style: none; }
.fc ul li { margin-bottom: 10px; }
.fc ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.fc ul li a::before { content: '›'; color: var(--teal); font-size: 16px; }
.fc ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
}
.social-row a:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* =========================
RESPONSIVE
========================= */
@media (max-width: 900px) {
  .topbar, header, .breadcrumb-bar { padding-left: 20px; padding-right: 20px; }
  nav { display: none; }
  .about-grid, .enq-grid { grid-template-columns: 1fr; gap: 36px; }
  .overview-wrapper { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sec-wrap { padding: 60px 20px; }
  .cta-bg { padding: 60px 20px; }
  .about-content { text-align: center; }
  .about-btns { justify-content: center; }
  .section-heading h2 { font-size: 34px; }
  .section-title h2 { font-size: 34px; }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 15px;
  }
  .topbar-left { flex-direction: column; gap: 8px; }
  header { padding: 12px 15px; min-height: auto; }
  .logo { gap: 10px; max-width: 75%; }
  .logo img { height: 55px; }
  .logo h2 { font-size: 12px; line-height: 1.3; white-space: normal; }
  .menu-toggle { display: block; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }
  nav.active { display: flex; }
  #navbar { display: none; flex-direction: column; width: 100%; background-color: #fff; position: absolute; top: 60px; left: 0; z-index: 1000; }
  #navbar.active { display: flex; }
  .menu-item { width: 100%; padding: 12px 0; }
  .dropdown { width: 100%; }
  .dropdown-menu {
    position: relative;
    top: 10px;
    left: 0;
    width: 100%;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: 1px solid #eee;
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .quote-btn {
    background-color: #003366 !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    width: fit-content;
    margin-top: 15px;
    white-space: nowrap;
  }
  .breadcrumb-section { padding: 20px 15px; }
  .breadcrumb-section h1 { font-size: 24px; }
  .breadcrumb-links { font-size: 13px; gap: 6px; }
  .about-section { padding: 70px 15px; }
  .about-content h2 { font-size: 34px; }
  .about-content p { font-size: 15px; line-height: 1.8; }
  .image-box { padding: 20px; }
  .quick-overview-section { padding: 65px 0; }
  .overview-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .overview-item { padding: 22px 18px; border-radius: 16px; }
  .overview-icon { width: 58px; height: 58px; min-width: 58px; font-size: 22px; }
  .overview-content h4 { font-size: 18px; }
  .overview-content p { font-size: 14px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 28px; }
  .section-heading p { font-size: 14px; line-height: 1.7; }
  .section-title h2 { font-size: 28px; }
  .spec-table thead th, .spec-table tbody td { font-size: 14px; padding: 12px; }
  .engineering-section { padding: 65px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .winch-features-section { padding: 50px 15px; }
  .content { padding: 0 20px; margin: 30px auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .get-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
}
