* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 line-height: 1.6;
 color: #333;
}

.container {
 width: 90%;
 max-width: 1200px;
 margin: 0 auto;
}

body {
  margin: 0;
  padding: 0;
  background: #B0C4DE;
}

section {
  margin-bottom: 0 !important;
}

footer {
  margin-top: 0 !important;
}

/* Navbar */
.navbar {
 position: fixed;
 top: 0;
 width: 100%;
 background: #B0C4DE;
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 z-index: 1000;
}

.nav-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 20px;
}

.logo img {
 height: 60px;
}

/* Desktop menu */
.nav-links {
 display: flex;
 list-style: none;
 gap: 25px;
}

.nav-links li {
 margin-left: 20px;
}

.nav-links a {
 text-decoration: none;
 color: #003366;
 font-weight: 600;
 transition: color 0.3s;
}

.nav-links a:hover {
 color: #ffcc00;
}

.menu-toggle {
 display: none;
 font-size: 1.8rem;
 cursor: pointer;
}

/* Hamburger Icon */
.hamburger {
 display: none;
 flex-direction: column;
 justify-content: space-between;
 width: 25px;
 height: 18px;
 cursor: pointer;
}

.hamburger span {
 height: 3px;
 width: 100%;
 background: #003366;
 border-radius: 2px;
 transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 900px) {
 .nav-links {
   position: fixed;
   top: 70px;
   right: -100%;
   flex-direction: column;
   background: #ffffff;
   width: 220px;
   height: calc(100vh - 70px);
   padding-top: 40px;
   transition: right 0.4s ease;
   box-shadow: -2px 0 10px rgba(0,0,0,0.15);
 }

 .nav-links li {
   margin: 20px 0;
   text-align: center;
 }

 .nav-links.show {
   right: 0;
 }

 .hamburger {
   display: flex;
 }

 /* Animate hamburger into "X" */
 .hamburger.active span:nth-child(1) {
   transform: rotate(45deg) translateY(8px);
 }

 .hamburger.active span:nth-child(2) {
   opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
   transform: rotate(-45deg) translateY(-8px);
 }
}

/* Hero Section */
*/*.hero {
 position: relative;
 height: 90vh;
 background: linear-gradient(rgba(0,40,100,0.8), rgba(0,40,100,0.8)),
 url('Industrial\ automation.png')center center/cover no-repeat;
 color: white;
 text-align: center;
 padding: 180px 20px;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
}
*/

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  animation: slideDown 1.2s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* === ARTICLES SECTION === */
.article-section {
  padding: 50px 0;
  background: #B0C4DE; /* warna hijau website kamu */
}

.article-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #003366;
}

.article-slider-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.article-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;        /* WAJIB */
  scroll-behavior: smooth; /* WAJIB */
  padding-bottom: 10px;
}

.article-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.article-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;         /* WAJIB untuk slider */
  background: linear-gradient(180deg, #f5f8ff 0%, #004080 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.article-image {
  position: relative;
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.article-card h3 {
  text-align: center;
  font-weight: normal;
  font-size: 16px;
  margin: 12px 0;
  color: whitesmoke;
}

/* Download button */
.download-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #2ecc71;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
}

.download-btn:hover {
  background: #27ae60;
}

/* Next / Prev buttons */
.slide-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  background: #003366;
  color: white;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev-btn { left: -10px; }
.next-btn { right: -10px; }

.slide-btn:hover {
  background: #001f4d;
}

/* === HIGHLIGHT SECTION === */
.highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 10%;
  background: #B0C4DE;
}

.highlight {
  text-align: center;
  width: 280px;
  padding: 20px;
  background: whitesmoke;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.highlight img {
  width: 60px;
  margin-bottom: 15px;
}

.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* === ABOUT SECTION WITH BACKGROUND IMAGE === */
.about {
  position: relative;
  background: linear-gradient(rgba(0,40,100,0.8), rgba(0,40,100,0.8)),
  url('power.png') center center/cover no-repeat;
  color: white;
  text-align: left; /* jangan center seluruh teks */
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  gap: 50px;
  animation: slideDown 1.2s ease-out;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: white;
  text-align: justify;
}

.about-vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.vision, .mission {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.vision:hover, .mission:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.vision h3, .mission h3 {
  color: #00bcd4;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.mission ul {
  padding-left: 20px;
  line-height: 1.8;
  color: white;
  list-style-type: disc;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about h2{
  color: white;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    border-left: none;
    text-align: center;
  }

  .about-vision-mission {
    flex-direction: column;
  }

  .about-image img {
    max-width: 90%;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    text-align: center;
    border-left: none;
  }

  .about-vision-mission {
    flex-direction: column;
  }

  .about-image img {
    max-width: 90%;
  }
}

/* =========================
   ABOUT – GRID / CARD STYLE
   ========================= */

/* Shared Section Style */
.about-expertise,
.about-why {
  margin-top: 50px;
}

.about-expertise h3,
.about-why h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: whitesmoke;
  position: relative;
}

.about-expertise h3::after,
.about-why h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* GRID LAYOUT */
.about-expertise ul,
.about-why ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0;
}

/* CARD STYLE */
.about-expertise li,
.about-why li {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover Effect */
.about-expertise li:hover,
.about-why li:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ICON STYLE (CSS ONLY) */
.about-expertise li::before,
.about-why li::before {
  content: "⚡";
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 10px;
  color: #ffcc00;
}

/* Different icon for Why Choose Us */
.about-why li::before {
  content: "✔";
  color: #28a745;
}

/* PARTNERS & BRANDS */
.about-partners {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fc;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-partners h3 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
}

.about-partners h3::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.about-partners p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
}

/* CALL TO ACTION */
.about-cta {
  margin-top: 70px;
  padding: 50px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, #003366, #0055aa);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 51, 102, 0.35);
}

.about-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.8;
  opacity: 0.95;
}

/* CTA BUTTON */
.about-cta .btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #ffcc00;
  color: #003366;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-primary:hover {
  background: #ffd633;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-partners {
    padding: 30px;
  }

  .about-cta {
    padding: 40px 25px;
  }

  .about-cta h3 {
    font-size: 1.7rem;
  }

  .about-cta p {
    font-size: 1rem;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-expertise h3,
  .about-why h3 {
    font-size: 1.5rem;
  }

  .about-expertise li,
  .about-why li {
    padding: 20px;
  }
}

/* Sections */
.section {
 padding: 80px 20px;
 text-align: center;
}

.section h2 {
 color: midnightblue;
 margin-bottom: 30px;
 font-size: 32px;
}

/* Services */
.service-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 20px;
}

.service-card {
 background: #f5f8fb;
 padding: 20px;
 border-radius: 8px;
 box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* === SERVICES SECTION === */
.services-section {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  min-height: 60vh;

  background-image:
    linear-gradient(rgba(0,40,100,0.75), rgba(0,40,100,0.75)),
    url("Streamlining-Your-Standard.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}


.services-section .section-title {
  font-size: 3rem;
  color: midnightblue;
  font-weight: 900;
  margin-bottom: 10px;
}

.services-subtitle {
  color: #5a5a5a;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services h2 {
  margin-top: 30px !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  background: #f4f8ff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 74, 173, 0.1);
  transition: all 0.3s ease;
  max-width: 400px;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 74, 173, 0.25);
}

/* Our Tools Section */
.tools {
  background-color: #f4f7fb;
}

.tools h2 {
  text-align: center;
  margin-bottom: 10px;
}

.tools-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 0.95rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.tool-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0a3d62;
}

.tool-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tool-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* PROJECT GALLERY SECTION  */

.project-gallery {
  padding: 60px 20px;
  background: #B0C4DE;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #004080;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.07);
}

/* Special shapes */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* Mobile fix */
@media (max-width: 600px) {
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* === PARTNERS / CUSTOMERS SECTION === */
.partners {
  background-color: #f8f9fb;
  text-align: center;
  padding: 70px 20px;
}

.partners .section-title {
  color: #0d3b66;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.partners .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #00bcd4;
  margin: 10px auto;
  border-radius: 2px;
}

/* === Logo Slider === */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 20); /* total 20 slide (10 + 10 duplikasi) */
  animation: scroll 30s linear infinite;
}

.logo-slide {
  width: 250px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-slide img {
  max-width: 150px;       /* lebar maksimum logo */
  max-height: 80px;       /* tinggi maksimum logo */
  width: auto;
  height: auto;
  object-fit: contain;    /* agar logo tidak terpotong */
  margin: 0 30px;         /* jarak antar logo */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-slide img {
    max-width: 100px;
    max-height: 60px;
    margin: 0 15px;
  }
}

/* === Animation === */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 10)); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .logo-slide {
    width: 150px;
  }

  .logo-slide img {
    width: 120px;
  }
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,60,150,0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: #00bcd4;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Projects */
.project-grid {
 display: flex;
 gap: 20px;
 flex-wrap: wrap;
 justify-content: center;
}

.project-card img {
 width: 100%;
 border-radius: 8px;
}

/* Customers */
.customer-logos {
 display: flex;
 justify-content: center;
 gap: 30px;
 flex-wrap: wrap;
}

.customer-logos img {
 filter: grayscale(0%);
 transition: filter 0.3s ease;
}

.customer-logos img:hover {
 filter: grayscale(0%);
}

/* Testimonial */
blockquote {
 font-style: italic;
 margin: 20px auto;
 max-width: 800px;
 color: #555;
}

cite {
 display: block;
 margin-top: 10px;
 color: #004080;
 font-weight: bold;
}

/* Footer */
.footer {
 background: #004080;
 color: white;
 text-align: left;
 padding: 20px 0;
 margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
 .nav-links {
   display: none;
   flex-direction: column;
   background: #fff;
   position: absolute;
   top: 80px;
   right: 0;
   width: 200px;
   border-left: 2px solid #004080;
 }

 .nav-links.show {
   display: flex;
 }

 .menu-toggle {
   display: block;
 }
}

/* Footer Section */
.footer {
 background: #3b4a8a;
 color: white;
 padding-top: 60px;
 font-size: 0.95rem;
 width: 100% !important;
 max-width: 100% !important;
 padding: 0 !important;
 margin: 0 !important;
}

.footer-container {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
 gap: 20px;
 margin-bottom: 40px;
 max-width: 1200px;
 margin: auto;
 padding: 0 20px;
}

.footer-section {
  flex: 1 1 300px; /* responsif di layar kecil */
  min-width: 280px;
}

.footer-section.location iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}


.footer-col h4 {
 font-size: 1rem;
 margin-top: 10px;
 margin-bottom: 15px;
 font-weight: 700;
 letter-spacing: 0.5px;
}

.footer-col p, .footer-col li, .footer-col a {
 color: #e0e6ff;
 line-height: 1.7;
 text-decoration: none;
}

.footer-col a:hover {
 color: #ffcc00;
}

.footer-logo {
 width: 100px;
 margin-bottom: 15px;
 margin-top: 10px;
}

.footer-col ul {
 list-style: none;
}

.footer-col ul li a {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0078ff;
}

.footer-bottom {
 text-align: center;
 border-top: 1px solid rgba(255,255,255,0.2);
 padding: 15px 0;
 font-size: 0.85rem;
}

.footer-map {
  text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .highlight { width: 90%; }
}

.whatsapp-float:hover {
 transform: scale(1.05);
 background-color: transparent;
}

/* Smooth scrolling between sections */
html {
 scroll-behavior: smooth;
}

/* Fade-in effect for sections */
.fade-in {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.8s ease-out;
}

.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}

.service-card, .project-card img {
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .project-card img:hover {
 transform: translateY(-5px) scale(1.02);
 box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay hitam transparan */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Animasi lembut saat teks muncul */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === PRODUCT SECTION === */
.product-section {
  background: #F0FFF0;
  padding: 100px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-title {
  color: #003366;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 30px;
}

.section-subtitle {
  color: black;
  font-size: 1.5rem;
  margin-top: 5px;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Hide dropdown default */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 160px;
  z-index: 999;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown item */
.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  color: #ffcc00;
}

/* bagian produk card kayak tokped */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.product-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 51, 102, 0.2);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-info ul li {
  color: #444;
  font-size: 0.95rem;
  padding: 5px 0;
  border-bottom: 1px solid #eef3fa;
}

.btn-whatsapp {
  display: inline-block;
  background: yellow;
  color: navy;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: yellow;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }
}

/* Dropdown Product Detail Section */
.product-detail {
  padding: 60px 0;
}

.product-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.product-title {
  font-size: 36px;
  color: #002b80;
  margin-bottom: 10px;
  margin-top: 50px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: #002b80;
  margin-bottom: 30px;
}

/* DESCRIPTION */
.product-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image uniform */
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Title */
.product-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }

  .title-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Inquiry Section (CONTAINER) */
.inquiry-section {
  margin-top: 60px;
  width: 100%;
  padding: 80px 20px;
  background: #B0C4DE;
  margin-top: 10px;
  margin-bottom: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inquiry Box (CARD) */
.btn-offer {
  display: inline-block;
  padding: 12px 28px;
  background-color: #002b80;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-offer:hover {
  background-color: #004bb5;
}

.inquiry-wrapper {
  max-width: 400px;
  width: 100%;
  padding: 50px 40px;
  background: orangered;
  border: 1px solid #e2e6ed;
  border-radius: 15px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inquiry-message {
  font-size: 18px;
  margin-bottom: 24px;
  color: #ffffff;
}

.inquiry-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #002b80;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.inquiry-btn:hover {
  background: #004bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .inquiry-wrapper {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .inquiry-message {
    font-size: 20px;
  }
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
  margin-top: 20px;
}

/* === PRODUCT BOX === */
.product-box {
  background: #ffffff;
  padding: 18px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid #eee;
}

.product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.15);
}

/* === IMAGE === */
.product-box img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* === PRODUCT NAME === */
.product-name {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  min-height: 42px;  
  margin-bottom: 6px;
}

/* === STATUS === */
.product-status {
  display: inline-block;
  margin-top: 8px;
  color: #0a7cff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.product-status:hover {
  text-decoration: underline;
}


/* === Mobile Optimization === */
@media (max-width: 600px) {
  .product-box img {
    height: 150px;
  }
  .product-name {
    font-size: 14px;
  }
}
/* === BRAND SECTION === */
.brand-section {
  background: linear-gradient(180deg, #f5f8ff 0%, #004080 100%);
  text-align: center;
  padding: 80px 20px;
}

.brand-section .section-title {
  color: #002b80;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 50px;
}

.brand-section .brand-subtitle {
  color: black;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.brand-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.brand-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 180px;
}

.brand-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-card span {
  display: block;
  margin-top: 15px;
  color: #004080;
  font-weight: 600;
  font-size: 1rem;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 64, 128, 0.2);
}

.brand-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-card {
    width: 140px;
    padding: 15px;
  }

  .brand-card img {
    height: 80px;
  }

  .brand-card span {
    font-size: 0.9rem;
  }
}

/* ===== PRICE LIST SECTION ===== */

.pricelist-section {
  background: #f4f6f9;
  padding: 80px 20px;
}

.pricelist-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.pricelist-section .section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* Card */
.pricelist-card {
  display: flex;
  gap: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.pricelist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Image */
.pricelist-image img {
  width: 220px;
  border-radius: 10px;
}

/* Content */
.pricelist-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.effective-date {
  font-weight: 600;
  color: #002b80;
  margin-bottom: 10px;
}

.description {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Badge */
.badge-latest {
  display: inline-block;
  background: #002b80;
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* Button */
.btn-download {
  display: inline-block;
  background: #e6392f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-download:hover {
  background: #c92c23;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pricelist-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pricelist-image img {
    width: 180px;
  }
}

.contact {
  background: linear-gradient(rgba(0, 74, 173, 0.85), rgba(0, 74, 173, 0.85)),
    url("contact-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.contact p {
  margin-bottom: 40px;
  font-size: 1rem;
  color: #e6e6e6;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #ffb703;
  color: #003566;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background-color: #ffd166;
}
/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(rgba(0,0,50,0.6), rgba(0,0,100,0.6)),
              url("file.webp") center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* SECTION INTRO PILOT */
.pilot-intro {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #e7f1ff, #ffffff);
}

.pilot-container {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image */
.pilot-image img {
  width: 260px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}

/* Text */
.pilot-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 15px;
}

.pilot-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.pilot-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pilot-features li {
  font-size: 17px;
  margin-bottom: 8px;
  color: #003366;
}

/* Button */
.pilot-button {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.pilot-button:hover {
  background: #005fcc;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  .pilot-container {
    text-align: center;
    justify-content: center;
  }

  .pilot-text h2 {
    font-size: 26px;
  }

  .pilot-image img {
    width: 200px;
  }
}
/* DESIGN KAYAK SHOPEE */

.products-section {
  padding: 40px 5%;
  background: #f5f5f5;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: linear-gradient(180deg, #f5f8ff 0%, #004080 100%);
  border-radius: 0px;
  padding: 12px;
  border: 1px solid navy;
  transition: 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;     /* Membuat kotak 1:1 */
  object-fit: cover;        /* Mengisi kotak tanpa distorsi */
  border-radius: 8px;
}

.product-info {
  margin-top: 10px;
  text-align: center;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  min-height: 45px;
  color: #333;
}

.btn-offer {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: #ff5722;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-offer:hover {
  background: #e64a19;
}

/* ===== GLOBAL RESPONSIVE STABILITY ===== */
img,
iframe {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

/* ===== TABLET + MOBILE LAYOUT ===== */
@media (max-width: 1024px) {
  .container,
  .product-container,
  .footer-container {
    width: min(94%, 1200px);
  }

  .nav-container {
    padding: 10px 14px;
  }

  .logo img {
    height: 52px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links li {
    margin-left: 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
  }

  .section-subtitle {
    font-size: clamp(1rem, 2.4vw, 1.25rem);
  }

  .hero-slider {
    min-height: 70vh;
    height: auto;
    padding: 120px 16px 60px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .hero-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  }

  .product-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    margin-top: 80px;
  }

  .product-text p {
    font-size: 1rem;
  }

  .product-grid,
  .products-grid,
  .services-grid,
  .tools-grid,
  .brand-container,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pricelist-card {
    gap: 20px;
    padding: 22px;
  }

  .footer-container {
    gap: 24px;
  }

  .footer-col {
    flex: 1 1 46%;
    min-width: 260px;
  }

  .footer-map {
    flex: 1 1 100%;
  }

  .footer-map iframe {
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    left: auto;
    width: min(86vw, 320px);
    height: calc(100dvh - 78px);
    background: #ffffff;
    border-left: 1px solid rgba(0, 51, 102, 0.15);
    box-shadow: -10px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 14px 12px 28px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.28s ease;
    z-index: 1200;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  }

  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 6px;
    margin-left: 10px;
    background: transparent;
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu li a {
    font-size: 0.92rem;
    padding: 9px 8px;
  }

  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .about,
  .services-section,
  .product-section,
  .brand-section,
  .pricelist-section,
  .contact-section,
  .project-gallery,
  .partners {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-grid,
  .products-grid,
  .services-grid,
  .tools-grid,
  .brand-container,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .brand-card,
  .tool-card,
  .service-card {
    width: 100%;
    max-width: 100%;
  }

  .product-card img {
    height: 190px;
  }

  .brand-card {
    justify-self: stretch;
  }

  .pricelist-card {
    padding: 18px;
  }

  .pricelist-content h3 {
    font-size: 1.2rem;
  }

  .inquiry-section {
    padding: 34px 14px;
  }

  .inquiry-wrapper {
    max-width: 100%;
    padding: 28px 20px;
  }

  .inquiry-message {
    font-size: 1rem;
  }

  .footer {
    font-size: 0.92rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 14px;
  }

  .footer-col,
  .footer-section,
  .company-info {
    min-width: 0;
  }

  .footer-map h3 {
    text-align: left;
  }

  .footer-map iframe {
    height: 220px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 46px;
  }

  .hero-slider {
    padding-top: 110px;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-content p {
    font-size: 0.94rem;
  }

  .product-title {
    margin-top: 72px;
  }

  .title-underline {
    width: 62px;
  }

  .article-card {
    min-width: 82vw;
    max-width: 82vw;
  }
}

/* Product Catalog (products/product.html) */
.catalog-toolbar {
  margin-top: 26px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
}

.catalog-toolbar input,
.catalog-toolbar select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c8d4e3;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
}

.catalog-count {
  margin-bottom: 16px;
  color: #003366;
  font-weight: 600;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-meta {
  font-size: 13px;
  color: #1f2f46;
  line-height: 1.5;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.badge.ready {
  background: #dff5e6;
  color: #117a37;
}

.badge.indent {
  background: #fff0dd;
  color: #9a5a00;
}

.badge.new {
  background: #e5f0ff;
  color: #0f4da8;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.btn-offer {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: #0b5cab;
  color: #fff;
}

.empty-state {
  display: none;
  text-align: center;
  color: #18314f;
  padding: 24px;
  background: #f1f6fb;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

/* About page enhancements */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 40px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.about-stat h3 {
  color: #ffcc00;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat p {
  color: #f2f7ff;
  font-size: 0.95rem;
}

.about-expertise li::before,
.about-why li::before {
  content: "\26A1";
}

.about-why li::before {
  content: "\2713";
}

.about-snapshot {
  margin-top: 55px;
}

.about-snapshot h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: whitesmoke;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.snapshot-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  color: #1f2f46;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.snapshot-card h4 {
  color: #003366;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.snapshot-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-partner-logos {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.about-partner-logos img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-cta .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #b9d9ff;
  color: #eaf4ff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-cta .btn-secondary:hover {
  transform: translateY(-4px);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .about-partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Brand page optimization */
.brand-page .brand-section {
  padding: 120px 20px 68px;
  background:
    radial-gradient(800px 360px at 15% -10%, rgba(0, 85, 170, 0.18), transparent 65%),
    linear-gradient(180deg, #e8f0fb 0%, #f4f8ff 100%);
}

.brand-page .brand-section .section-title {
  margin-top: 0;
  color: #0c365f;
}

.brand-page .brand-subtitle {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #36587f;
}

.brand-page .brand-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 30px;
}

.brand-page .brand-meta div {
  background: #ffffff;
  border: 1px solid #dbe8f7;
  border-radius: 12px;
  padding: 12px;
}

.brand-page .brand-meta strong {
  display: block;
  color: #0b4c8f;
  font-size: 1.1rem;
}

.brand-page .brand-meta span {
  font-size: 0.86rem;
  color: #486a92;
}

.brand-page .brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.brand-page .brand-card {
  width: 180px;
  border: 1px solid #dce8f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}

.brand-page .brand-card span {
  color: #124470;
  margin-top: 10px;
}

.brand-page .pricelist-section {
  background: #edf4fc;
  padding-top: 64px;
  padding-bottom: 42px;
}

.brand-page .pricelist-card {
  border: 1px solid #dae7f5;
}

.brand-page .pricelist-image img {
  width: 220px;
  height: 260px;
  object-fit: cover;
}

.brand-page .btn-download {
  border-radius: 999px;
  background: #0a5aa7;
}

.brand-page .btn-download:hover {
  background: #074787;
}

.brand-page .brand-cta {
  background: #edf4fc;
  padding: 0 20px 74px;
}

.brand-page .brand-cta-box {
  background: linear-gradient(145deg, #0c3f77 0%, #0c5ca6 100%);
  border-radius: 20px;
  padding: 34px 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 35px rgba(3, 45, 90, 0.2);
}

.brand-page .brand-cta-box h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.brand-page .brand-cta-box p {
  max-width: 740px;
  margin: 0 auto 20px;
  line-height: 1.65;
  color: #deebff;
}

.brand-page .brand-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-page .brand-cta .btn-primary,
.brand-page .brand-cta .btn-secondary {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.brand-page .brand-cta .btn-primary {
  background: #ffcc00;
  color: #08345e;
}

.brand-page .brand-cta .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

@media (max-width: 900px) {
  .brand-page .brand-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-page .brand-section {
    padding-top: 106px;
  }

  .brand-page .pricelist-image img {
    width: 170px;
    height: 200px;
  }

  .brand-page .brand-cta-box h3 {
    font-size: 1.4rem;
  }
}

/* Home page optimization */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-hero-primary {
  background: #ffcc00;
  color: #052b52;
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hero-kpi {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-kpi div {
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-kpi strong {
  display: block;
  font-size: 1.2rem;
  color: #ffde59;
}

.hero-kpi span {
  font-size: 0.85rem;
  color: #eff6ff;
}

.home-solutions {
  padding: 72px 20px;
  background: linear-gradient(180deg, #b9cbe2 0%, #d6e4f5 100%);
}

.solution-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #d9e6f4;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(3, 45, 90, 0.08);
}

.solution-card h3 {
  color: #0d355f;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.solution-card p {
  color: #335578;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.solution-card a {
  text-decoration: none;
  font-weight: 700;
  color: #0055aa;
}

.solution-card a:hover {
  color: #003f80;
}

.home-quote {
  padding: 72px 20px;
  background: linear-gradient(180deg, #dce8f6 0%, #eaf2fb 100%);
}

.home-quote-wrap {
  background: #ffffff;
  border: 1px solid #d7e5f4;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(4, 45, 86, 0.08);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
}

.home-quote-text h2 {
  font-size: 1.8rem;
  color: #093967;
  margin-bottom: 8px;
}

.home-quote-text p {
  color: #35587e;
  line-height: 1.6;
}

.home-quote-form {
  display: grid;
  gap: 10px;
}

.home-quote-form input,
.home-quote-form textarea {
  width: 100%;
  border: 1px solid #c8d9ed;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.home-quote-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: #0a5aa7;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.home-quote-form button:hover {
  background: #074988;
}

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-quote-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-kpi {
    gap: 10px;
  }

  .hero-kpi div {
    min-width: 95px;
  }

  .home-solutions {
    padding: 56px 14px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .home-quote {
    padding: 56px 14px;
  }

  .home-quote-wrap {
    padding: 18px;
  }
}

/* Sub-product page optimization */
.product-detail {
  padding: 120px 0 64px;
  background:
    radial-gradient(1000px 500px at 85% -20%, rgba(0, 85, 170, 0.18), transparent 60%),
    linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
}

.product-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbe7f4;
  border-radius: 22px;
  padding: 34px 28px 10px;
  box-shadow: 0 18px 45px rgba(3, 34, 79, 0.08);
}

.product-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: #0d2f57;
}

.title-underline {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0054a6, #ffcc00);
  margin-bottom: 24px;
}

.product-text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #244264;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
  padding: 0;
  max-width: none;
}

.product-card {
  border: 1px solid #e3ecf7;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(0, 45, 98, 0.08);
}

.product-card img {
  height: 190px;
  background: #f4f8fd;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}

.product-card h4 {
  color: #14385f;
  font-size: 0.94rem;
  line-height: 1.45;
  min-height: 2.8em;
}

.inquiry-section {
  margin: 34px 0 0;
  padding: 0;
  background: transparent;
}

.inquiry-wrapper {
  max-width: 100%;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #d7e4f3;
  background: linear-gradient(145deg, #0b3f77 0%, #0d5aa3 100%);
}

.inquiry-message {
  margin-bottom: 14px;
  font-size: 1rem;
}

.inquiry-btn {
  border-radius: 999px;
  background: #ffcc00;
  color: #0a2f57;
}

.inquiry-btn:hover {
  background: #ffe277;
}

@media (max-width: 768px) {
  .product-detail {
    padding-top: 104px;
  }

  .product-container {
    padding: 24px 16px 8px;
    border-radius: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 220px;
  }
}



