*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --steel: #1a2535;
  --steel-mid: #2c3e55;
  --steel-light: #3d5068;
  --blue: #1565c0;
  --blue-bright: #1976d2;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --text: #1a2535;
  --muted: #5a6a7a;
  --border: #dde3ea;
  --red: #e53935;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
#navbar.scrolled {
  background: var(--steel);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  max-width: 140px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  transition:
    height 0.3s ease,
    max-width 0.3s ease,
    background 0.3s ease;
}
#navbar.scrolled .nav-logo-img {
  height: 56px;
  max-width: 160px;
  background: rgba(255, 255, 255, 0.12);
}
.nav-logo-icon i {
  color: var(--steel);
  font-size: 18px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-logo-text span:last-child {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--steel) !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  padding: 9px 18px !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  background: var(--steel);
  padding: 16px 24px 24px;
  list-style: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-menu a:hover {
  color: var(--accent);
}
#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      130deg,
      rgba(21, 101, 192, 0.92) 0%,
      rgba(26, 37, 53, 0.97) 60%
    ),
    url("https://images.unsplash.com/photo-1604076913837-52ab5629fde9?w=1600&q=80")
      center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), #e65100);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  transform: scale(1);
  animation: zoomOut 1s ease-out 0.2s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--steel);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span {
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 18px;
}
section {
  padding: 96px 24px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--steel);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-title span {
  color: var(--blue);
}
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
}
.marquee-item i {
  font-size: 14px;
}
#about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

@media (max-width: 768px) {
  .about-img-main,
  .about-img-main-placeholder {
    /* grid-template-columns: 1fr; */
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
.about-img-main-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel-mid) 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-img-main-placeholder i {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.15);
}
.about-img-main-placeholder p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-badge-box {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--blue);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.35);
}
.about-badge-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}
.about-badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-text {
  padding-bottom: 28px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--accent);
}
.about-feature i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature-text strong {
  display: block;
  font-size: 14px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 2px;
}
.about-feature-text span {
  font-size: 12px;
  color: var(--muted);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.mv-card {
  padding: 24px;
  border-radius: 4px;
  background: var(--white);
  border-top: 3px solid var(--blue);
}
.mv-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-card h4 i {
  color: var(--blue);
  font-size: 16px;
}
.mv-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
#products {
  background: var(--white);
}
.products-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.products-intro p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  background: var(--white);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.product-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  object-fit: contain;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product-img-placeholder i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-body {
  padding: 20px 22px 24px;
}
.product-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-spec {
  background: var(--off-white);
  font-size: 11px;
  color: var(--steel-light);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.product-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}
.product-link:hover {
  color: var(--blue-bright);
}
#services {
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.services-bg-shape {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 50%;
}
#services .section-title {
  color: var(--white);
}
#services .section-label {
  color: var(--accent);
}
.services-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 56px;
  max-width: 500px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 32px 28px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i {
  color: var(--steel);
  font-size: 22px;
}
.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}
.service-card ul {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li i {
  color: var(--accent);
  font-size: 11px;
}
#whychoose {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.why-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 24px;
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  text-align: center;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--steel), var(--steel-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i {
  color: var(--accent);
  font-size: 24px;
}
.why-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, var(--steel) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-banner .hero-btns {
  justify-content: center;
  position: relative;
}
#gallery {
  background: var(--white);
}
.gallery-intro {
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: 1/6;
  grid-row: 1;
}
.gallery-item:nth-child(2) {
  grid-column: 6/9;
  grid-row: 1;
}
.gallery-item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1;
}
.gallery-item:nth-child(4) {
  grid-column: 1/4;
  grid-row: 2;
}
.gallery-item:nth-child(5) {
  grid-column: 4/9;
  grid-row: 2;
}
.gallery-item:nth-child(6) {
  grid-column: 9/13;
  grid-row: 2;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.35s;
  background: linear-gradient(135deg, #1a2535 0%, #2c3e55 100%);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery-item:nth-child(6) .gallery-img {
  object-fit: contain;
}

.gallery-item:nth-child(1) .gallery-img {
  object-fit: contain;
}
.gallery-item:nth-child(2) .gallery-img {
  object-fit: contain;
}
.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-placeholder i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.25);
}
.gallery-placeholder span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 37, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 28px;
}
#contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--blue);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i {
  color: var(--white);
  font-size: 16px;
}
.contact-item h4 {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item p {
  color: var(--steel);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}
.contact-item a:hover {
  color: var(--blue);
}
.contact-map {
  margin-top: 12px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}
.contact-form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.contact-form-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
  background: var(--white);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-error {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--steel);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 16px;
  color: #2e7d32;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
#map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}
.map-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}
.map-container:hover .map-iframe {
  transform: scale(1.02);
}
.map-overlay-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  z-index: 10;
  animation: pulse-info 2s infinite;
  backdrop-filter: blur(10px);
}
@keyframes pulse-info {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
footer {
  background: #0e1820;
  padding: 72px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--steel);
}
.footer-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-col ul li a i {
  font-size: 10px;
  color: var(--accent);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: var(--accent);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: floatBtn 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn i {
  color: var(--white);
  font-size: 26px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--steel);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes floatBtn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-badge-box {
    right: 16px;
  }
  .products-intro {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 72px 20px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    gap: 32px;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
  .map-container {
    height: 300px;
  }
  .map-overlay-info {
    font-size: 12px;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
  .map-container {
    height: 250px;
  }
  .map-overlay-info {
    font-size: 11px;
    padding: 8px 12px;
  }
}
.prod-1 {
  background: linear-gradient(135deg, #1a2a3a, #2c4060);
}
.prod-2 {
  background: linear-gradient(135deg, #2a1a1a, #4a2a2a);
}
.prod-3 {
  background: linear-gradient(135deg, #1a2a1a, #2a4a2a);
}
.prod-4 {
  background: linear-gradient(135deg, #1a1a2a, #2a2a4a);
}
.gal-1 {
  background: linear-gradient(135deg, #1a2535, #2c3e55);
}
.gal-2 {
  background: linear-gradient(135deg, #1a3040, #1565c0);
}
.gal-3 {
  background: linear-gradient(135deg, #2a2a2a, #444);
}
.gal-4 {
  background: linear-gradient(135deg, #0e1820, #1a2535);
}
.gal-5 {
  background: linear-gradient(135deg, #152535, #1565c0);
}
.gal-6 {
  background: linear-gradient(135deg, #1a2535, #3d5068);
}
