/* =========================================================
   EuroAsia Engineering Solutions — Shared Stylesheet
   style.css  |  All product pages
   ========================================================= */

/* ----- DESIGN TOKENS ----- */
:root {
  --blue:        #0d6efd;
  --blue-dark:   #0a58ca;
  --teal:        #0dcaf0;
  --navy:        #001428;
  --navy-mid:    #002147;
  --white:       #ffffff;
  --light:       #f4f8fc;
  --light2:      #e8f4fd;
  --muted:       #6c757d;
  --border:      #dee2e6;
  --text:        #212529;
  --accent:      #0dcaf0;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); background: #fff; color: var(--text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, #001221, #002b5c);
  color: #fff;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 7px; }
.topbar-left span i { color: var(--teal); }
.topbar-left a { color: #fff; text-decoration: none; }
.topbar-left a:hover { color: var(--teal); }
.social-icons { display: flex; gap: 12px; }
.social-icons i { cursor: pointer; font-size: 14px; transition: 0.2s; color: rgba(255,255,255,0.7); }
.social-icons i:hover { color: var(--teal); transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 90px;
  box-shadow: 0 4px 20px 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, var(--teal), var(--blue), 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: 12px; text-decoration: none; }
.logo img { height: 55px; width: auto; object-fit: contain; }
.logo h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

/* Nav */
nav { display: flex; align-items: center; gap: 4px; }
.menu-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
  white-space: nowrap;
}
.menu-item:hover { color: var(--blue); background: var(--light2); }

.quote-btn {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(13,110,253,0.3);
}
.quote-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(13,110,253,0.4); background: linear-gradient(135deg, var(--blue-dark, #0a58ca), var(--teal)) !important; color: #fff !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 240px;
  overflow: hidden;
  z-index: 9999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  transition: 0.2s;
}
.dropdown-menu a:hover { background: var(--light2); color: var(--blue); padding-left: 24px; }

/* Hamburger */
.menu-toggle { display: none; font-size: 22px; cursor: pointer; color: var(--navy); padding: 8px; }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-section {
  background: #f5f7fb;
  padding: 22px 5%;
  border-bottom: 1px solid #e5e5e5;
}
.breadcrumb-container { max-width: 1200px; margin: auto; }
.breadcrumb-section h1 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.breadcrumb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb-links a { color: var(--blue); transition: 0.2s; }
.breadcrumb-links a:hover { color: var(--teal); }
.breadcrumb-links span { color: #888; }
.active-breadcrumb { color: #333 !important; font-weight: 600; }

/* =========================================================
   ABOUT / INTRO SECTION
   ========================================================= */
.about-section { padding: 70px 5%; background: #fff; }
.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: var(--light2);
  color: var(--blue);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 800;
}
.about-content h2 span { color: var(--blue); }

.about-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-btns { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about-btn {
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-family: var(--font-display);
}
.primary-btn { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; }
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(13,110,253,0.25); }
.outline-btn { border: 2px solid var(--blue); color: var(--blue); background: #fff; }
.outline-btn:hover { background: var(--blue); color: #fff; }

/* Image Box */
.about-image { position: relative; }
.image-box {
  background: #f0f6ff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.image-box::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  top: -50px; right: -50px;
  opacity: 0.07;
}
.image-box img { width: 100%; border-radius: 10px; position: relative; z-index: 2; }

/* =========================================================
   KEY FEATURES — 500kg page
   ========================================================= */
.winch-500kg { padding: 70px 5%; background: #f4f8ff; }
.winch-500kg .title { text-align: center; margin-bottom: 36px; }
.winch-500kg .title h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #0a2540;
}
.winch-500kg .title span { color: var(--blue); }

.winch-500kg .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.winch-500kg .card {
  background: #fff;
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px solid #e6eefc;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}
.winch-500kg .card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); }
.winch-500kg .icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}
.winch-500kg .card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.winch-500kg .card p { font-size: 14px; color: #555; line-height: 1.6; }
.winch-500kg .card-full { grid-column: 1 / -1; }

/* =========================================================
   WHY CHOOSE — 500kg page
   ========================================================= */
.why-choose-winch { padding: 70px 5%; background: #fff; }
.why-choose-winch .title { text-align: center; margin-bottom: 36px; }
.why-choose-winch .title h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: #0a2540;
}
.why-choose-winch .title h2 span { color: var(--blue); }
.why-choose-winch .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose-winch .card {
  background: #f4f8ff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #e6eefc;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.why-choose-winch .card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); }
.why-choose-winch .icon {
  width: 48px; height: 48px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 20px; margin-bottom: 12px;
}
.why-choose-winch .card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.why-choose-winch .card p { font-size: 14px; color: #555; line-height: 1.6; }

/* =========================================================
   SPECS TABLE — 500kg page
   ========================================================= */
.winch-specs { padding: 60px 5%; background: #f8f9fa; }
.winch-specs h2 {
  text-align: center; margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: #0d47a1;
}
.specs-table-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.specs-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid #ddd; min-width: 500px;
}
.specs-table thead tr { background: #0d47a1; color: #fff; }
.specs-table th {
  padding: 14px 18px; text-align: left;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
}
.specs-table td { padding: 12px 18px; border-bottom: 1px solid #eee; font-size: 14px; }
.specs-table tr:nth-child(even) td { background: #f5f8ff; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { color: var(--muted); font-weight: 600; }
.specs-table td:last-child { color: var(--navy); font-weight: 600; }

/* =========================================================
   APPS & FEATURES — 500kg page
   ========================================================= */
.apps-features-section { padding: 70px 5%; background: #f4f7fb; }
.apps-features-section .section-title { text-align: center; margin-bottom: 44px; }
.apps-features-section .section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: #0d47a1; margin-bottom: 10px;
}
.apps-features-section .section-title p {
  color: #666; max-width: 720px; margin: auto; line-height: 1.65; font-size: 15px;
}

.industry-apps { margin-bottom: 44px; }
.industry-apps h4 {
  font-family: var(--font-display);
  color: #0d47a1; margin-bottom: 18px; font-size: 17px;
}
.apps-flex { display: flex; flex-wrap: wrap; gap: 14px; }
.app-chip {
  flex: 1 1 170px;
  background: #fff; padding: 14px 16px;
  border-left: 4px solid #0d47a1;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-radius: 0 8px 8px 0;
  font-size: 14px; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  transition: 0.2s;
}
.app-chip:hover { background: var(--light2); border-left-color: var(--teal); }
.app-chip i { color: #0d47a1; }

.feat-two-col { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.feat-box {
  flex: 1; min-width: 260px;
  background: #fff; padding: 22px;
  border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.feat-box h4 { font-family: var(--font-display); color: #0d47a1; margin-bottom: 14px; font-size: 16px; }
.feat-box ul { padding: 0; line-height: 1.95; color: #444; font-size: 14px; }

.what-you-get-banner {
  background: #0d47a1; color: #fff; padding: 24px 28px; border-radius: 10px;
}
.what-you-get-banner h4 { font-family: var(--font-display); margin-bottom: 10px; font-size: 17px; }
.what-you-get-banner p { line-height: 1.9; font-size: 14px; }

/* =========================================================
   QUICK OVERVIEW — 1 Ton page
   ========================================================= */
.quick-overview-section { padding: 70px 5%; background: #f5f9ff; }
.section-title { text-align: center; margin-bottom: 40px; }
.sub-title {
  color: var(--blue); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-block; margin-bottom: 8px;
}
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; color: #0a2540; margin: 8px 0 12px;
}
.section-title h2 span { color: var(--blue); }
.section-title p { max-width: 720px; margin: auto; color: #555; line-height: 1.7; font-size: 15px; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px; margin: 0 auto;
}
.overview-card {
  background: #fff; padding: 22px;
  border-radius: 12px; border: 1px solid #e6eefc;
  text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.overview-card:hover { transform: translateY(-5px); }
.overview-card .icon {
  width: 52px; height: 52px; margin: 0 auto 12px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: 20px;
}
.overview-card h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin: 8px 0 5px;
}
.overview-card p { font-size: 14px; color: #555; line-height: 1.6; }
.overview-card.full-width { grid-column: 1 / -1; }

/* =========================================================
   TECH SPECS TABLE — 1 Ton page
   ========================================================= */
.technical-spec-section { padding: 70px 5%; background: #f5f9ff; }
.table-responsive { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.spec-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  min-width: 480px;
}
.spec-table thead { background: var(--blue); color: #fff; }
.spec-table thead th {
  padding: 15px 18px; text-align: left;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
}
.spec-table tbody td { padding: 13px 18px; border-bottom: 1px solid #eee; color: #333; font-size: 14px; }
.spec-table tbody tr:nth-child(even) td { background: #f8fbff; }
.spec-table tbody tr:hover td { background: #eef5ff; }
.spec-table tbody tr:last-child td { border-bottom: none; }

/* =========================================================
   ENGINEERING SECTION — 1 Ton page
   ========================================================= */
.engineering-section { padding: 70px 5%; background: #f4f8ff; }
.eng-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.eng-card {
  background: #fff; padding: 20px;
  border-radius: 12px; border: 1px solid #e6eefc;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.eng-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.eng-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 9px;
}
.eng-card p { color: #555; font-size: 14px; line-height: 1.65; }
.eng-card.full { grid-column: 1 / -1; background: var(--blue); }
.eng-card.full h3 { color: #fff; font-size: 17px; }

/* =========================================================
   WHAT YOU RECEIVE
   ========================================================= */
.get-bg { background: var(--navy); }
.sec-wrap { max-width: 1200px; margin: 0 auto; padding: 70px 5%; }
.sec-head { text-align: center; margin-bottom: 48px; }

.sec-tag2 {
  display: inline-block;
  background: var(--light2); color: var(--blue);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 12px;
}
.sec-title2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 12px;
}
.sec-title2 em { color: var(--blue); font-style: normal; }
.divider-line {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px; margin: 14px auto 0;
}

.get-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.get-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 28px 20px;
  text-align: center; transition: 0.3s;
}
.get-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.get-card i { font-size: 30px; color: var(--teal); margin-bottom: 14px; display: block; }
.get-card h5 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.get-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* =========================================================
   STATS BAR
   ========================================================= */
.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: 48px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 30px; color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-bg {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 5%; text-align: center;
}
.cta-bg h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.cta-bg h2 em { color: var(--blue); font-style: normal; }
.cta-bg p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

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

.btn-outline-blue {
  background: transparent; color: var(--blue);
  padding: 12px 28px; font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  border: 2px solid var(--blue); border-radius: 30px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: 0.25s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.ultra-modern-footer { background: var(--navy); }
.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
  background-size: 200% 100%;
  animation: lineMove 4s linear infinite;
}
.footer-inner {
  max-width: 1200px; margin: auto;
  padding: 55px 5% 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 44px;
}

.f-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
}
.f-logo-text {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 800; color: #fff; line-height: 1.25;
  display: flex; flex-direction: column;
}
.f-logo-text small { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; opacity: 0.65; }

.f-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 16px; }

.f-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.f-badge {
  background: rgba(13,202,240,0.12);
  border: 1px solid rgba(13,202,240,0.28);
  color: var(--teal); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 5px;
}

.f-chips { display: flex; flex-direction: column; gap: 10px; }
.f-chip { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.6); }
.f-chip i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.f-chip a { color: rgba(255,255,255,0.6); transition: 0.2s; }
.f-chip a:hover { color: var(--teal); }

.f-col-title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal) !important; margin-bottom: 16px;
}
.f-links li { margin-bottom: 9px; }
.f-links a {
  font-size: 13px; color: rgba(255,255,255,0.5) !important;
  transition: 0.2s; display: inline-flex; align-items: center; gap: 5px;
}
.f-links a::before { content: '›'; color: var(--teal); font-size: 15px; }
.f-links a:hover { color: #fff !important; padding-left: 4px; }

.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0 5%; }
.footer-bottom {
  max-width: 1200px; margin: auto; padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 9px; }
.f-soc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 12px; transition: 0.2s;
}
.f-soc:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* =========================================================
   MOBILE NAV
   ========================================================= */
nav.active {
  display: flex; flex-direction: column;
  position: absolute; top: 90px; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 5% 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  z-index: 9998; gap: 2px;
}
nav.active .dropdown-menu {
  position: static; box-shadow: none; border: none;
  background: var(--light); border-radius: 8px; margin-top: 4px; display: block;
}

/* =========================================================
   RESPONSIVE — TABLET  ≤ 900px
   ========================================================= */
@media (max-width: 900px) {
  nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-content { text-align: center; }
  .about-btns { justify-content: center; }

  .winch-500kg .grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-winch .grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .eng-grid { grid-template-columns: repeat(2, 1fr); }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 5% 30px; }
}

/* =========================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ========================================================= */
@media (max-width: 640px) {
  header { height: 75px; padding: 0 4%; }
  .logo img { height: 44px; }
  .logo h2 { font-size: 14px; }

  .topbar { padding: 10px 4%; flex-direction: column; gap: 6px; text-align: center; }
  .topbar-left { flex-direction: column; gap: 5px; }

  .breadcrumb-section h1 { font-size: 22px; }

  .about-section { padding: 50px 4%; }
  .about-content h2 { font-size: 28px; }

  .winch-500kg,
  .why-choose-winch,
  .quick-overview-section,
  .technical-spec-section,
  .engineering-section,
  .apps-features-section { padding: 50px 4%; }

  .winch-500kg .grid,
  .overview-grid { grid-template-columns: 1fr; }

  .eng-grid { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 34px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  nav.active { top: 75px; }

  .feat-two-col { flex-direction: column; }
  .apps-flex { flex-direction: column; }
}
