
/* HERO SLIDER */
.hero-slider{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active{
    opacity: 1;
    z-index: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* OVERLAY */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1{
  font-size: 64px;
  max-width: 900px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p{
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-content .btn{
  padding: 15px 35px;
  background: #ff3b3b;
  color: rgb(226, 218, 218);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-content .btn:hover{
  background: #d60000;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero-content h1{
    font-size: 40px;
  }

  .hero-content p{
    font-size: 16px;
  }

}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8f8f8;
  color:#222;
}

header{
  position:fixed;
  top:0;
  width:100%;
  background:whitesmoke;
  padding: 12px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
}

.logo{
    display: flex;
    align-items: center;
}

.logo a{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo img:hover{
    transform: scale(1.05);
}

nav a{
  color:#222;
  text-decoration:none;
  margin-left:25px;
  transition:0.3s;
}

nav a:hover{
  color:#ff2e2e;
}

.hero{
  height:100vh;
  background:url('https://i.pinimg.com/1200x/7b/e1/c4/7be1c4f40610415cb34e173a4bc897f1.jpg') center/cover;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.hero-content h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero-content p{
  max-width:700px;
  margin:auto;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  background:#ff2e2e;
  color:white;
  padding:14px 30px;
  text-decoration:none;
  border-radius:8px;
  transition:0.3s;
}

.btn:hover{
  background:#d60000;
}

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:40px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.product-card{
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.4s;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-card h3{
  padding:20px 20px 10px;
}

.product-card p{
  padding:0 20px 20px;
}

.product-card button{
  margin:0 20px 20px;
  padding:10px 20px;
  border:none;
  background:#ff2e2e;
  color:white;
  border-radius:6px;
  cursor:pointer;
}

.about{
  background:#111;
  color:white;
  text-align:center;
}

.about-content{
  max-width:900px;
  margin:auto;
}

.about-content h2{
  margin-bottom:20px;
  font-size:42px;
}

.about-content p{
  line-height:1.5em;
  margin-bottom:30px;
}

/* ABOUT SECTION */

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

.section-badge {
  background: #ff3b3b;
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-content p {
  color: white;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-outline {
  border: 2px solid #ff3b3b;
  color: #ff3b3b;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.btn-outline:hover {
  background: #ff3b3b;
  color: white;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ABOUT PAGE */

.about-hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('https://pemadamapi.biz/images/2025/02/14/pt-global-mitra-proteksindo-vector.png') center/cover;
    
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.about-hero-content h1 {
  font-size: 64px;
  margin: 20px 0;
}

.about-hero-content p {
  max-width: 700px;
  line-height: 1.8;
}

.company-section {
  padding: 100px 10%;
}

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

.company-left img {
  width: 100%;
  border-radius: 25px;
}

.company-right h2 {
  font-size: 42px;
  margin: 20px 0;
}

.company-right p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.company-stats {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  flex: 1;
}

.stat-box h3 {
  color: #ff3b3b;
  font-size: 32px;
}

/* VISI MISI */
.vision-section{
  display: flex;
  gap: 30px;
  padding: 80px 8%;
  background: #f8f8f8;
  align-items: stretch;
  flex-wrap: wrap;
}

.vision-card{
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.large-card{
  flex: 2;
  min-width: 320px;
}

.mission-card{
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-card h2{
  font-size: 32px;
  margin-bottom: 25px;
  color: #111;
}

.vision-list{
  padding-left: 20px;
}

.vision-list li{
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

.mission-card p{
  line-height: 1.9;
  color: #555;
  font-size: 16px;
}

/* RESPONSIVE */
@media(max-width: 900px){

  .vision-section{
    flex-direction: column;
  }

  .large-card,
  .mission-card{
    width: 100%;
  }

}

/* RESPONSIVE */

@media(max-width: 900px){

  .about,
  .company-container,
  .vision-section {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .company-right h2 {
    font-size: 32px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }

  .company-stats {
    flex-direction: column;
  }

}

.client-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}

.client{
  background:white;
  padding:40px;
  text-align:center;
  font-weight:600;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logos img {
  width: 140px;
  transition: 0.3s;
}

.client-logos img:hover {
  transform: scale(1.05);
}

.catalog{
  background:#ff2e2e;
  color:white;
  text-align:center;
}

.catalog-box h2{
  font-size:40px;
  margin-bottom:20px;
}

.contact-box{
  text-align:center;
  line-height:2;
}

/* FLOATING WHATSAPP */
.floating-wa{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  z-index: 9999;
  transition: all .3s ease;
  animation: waPulse 2s infinite;
}

.floating-wa img{
  width: 35px;
  height: 35px;
}

.floating-wa:hover{
  transform: translateY(-5px) scale(1.08);
}

@keyframes waPulse{
  0%{
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  }
  70%{
    box-shadow: 0 0 0 20px rgba(37,211,102,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* MODERN CATALOG */
.modern-catalog {
  position: relative;
  padding: 120px 8%;
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #111827,
      #1e293b
    );

  overflow: hidden;
}

.catalog-overlay {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,0,0,0.15);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  filter: blur(100px);
}

.catalog-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  align-items: center;
}

.catalog-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.catalog-left h2 {
  color: white;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.catalog-left p {
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 35px;
}

.catalog-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.feature-item {
  background: rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-item:hover {
  background: #e60012;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230,0,18,0.25);
}
.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(
    135deg,
    #ff2d2d,
    #d40000
  );

  color: white;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.catalog-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255,0,0,0.4);
}

.catalog-right {
  display: flex;
  justify-content: center;
}

.catalog-card {
  width: 320px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(20px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);

  transition: 0.5s;
}

.catalog-card:hover {
  transform:
    translateY(-10px)
    rotate(-2deg);
}

.catalog-card img {
  width: 100%;
  display: block;
}

.catalog-card-content {
  padding: 25px;
  text-align: center;
}

.catalog-card-content h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 26px;
}

.catalog-card-content p {
  color: rgba(255,255,255,0.7);
}

/* MODERN CONTACT */
.modern-contact {
  position: relative;
  padding: 120px 8%;
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #111827,
      #1e293b
    );

  overflow: hidden;
}

.contact-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,0,0,0.12);
  border-radius: 50%;
  top: -150px;
  left: -100px;
  filter: blur(100px);
}

.section-title.light {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 70px;
}

.section-title.light span {
  display: inline-block;
  color: #ff3b3b;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.section-title.light h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.section-title.light p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.contact-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  align-items: start;
}

/* LEFT */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: center;

  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 24px;

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
}

.contact-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #ff2d2d,
      #d40000
    );

  font-size: 28px;
}

.contact-card h3 {
  color: white;
  margin-bottom: 6px;
}

.contact-card p {
  color: rgba(255,255,255,0.75);
}

/* RIGHT */
.contact-form-box {
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 30px;

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 20px;

  border: none;
  outline: none;

  border-radius: 14px;

  background: rgba(255,255,255,0.08);

  color: white;
  font-family: 'Poppins', sans-serif;
}

.input-group textarea {
  resize: none;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-btn {
  background:
    linear-gradient(
      135deg,
      #ff2d2d,
      #d40000
    );

  border: none;
  padding: 18px;

  border-radius: 14px;

  color: white;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.4s;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 15px 35px rgba(255,0,0,0.35);
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:20px;
}

@media(max-width:768px){

  header{
    flex-direction:column;
  }

  nav{
    margin-top:15px;
  }

  .hero-content h1{
    font-size:40px;
  }

}

/* MILESTONE */
.milestone-section{
  padding: 100px 8%;
  background: #fff;
}

.section-title{
  text-align: center;
  margin-bottom: 70px;
}

.section-title span{
  color: #d62828;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2{
  font-size: 42px;
  margin: 15px 0;
  color: #111;
}

.section-title p{
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* Timeline */
.timeline{
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.timeline::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d62828;
  transform: translateX(-50%);
}

.timeline-item{
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

.timeline-item:nth-child(odd){
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even){
  left: 50%;
}

.timeline-year{
  display: inline-block;
  background: #d62828;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content{
  background: #f8f8f8;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.timeline-content h3{
  margin-bottom: 15px;
  color: #111;
}

.timeline-content p{
  color: #555;
  line-height: 1.8;
}

/* Bulatan timeline */
.timeline-item::before{
  content: "";
  position: absolute;
  top: 35px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #d62828;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(odd)::before{
  right: -9px;
}

.timeline-item:nth-child(even)::before{
  left: -9px;
}

/* Responsive */
@media(max-width: 900px){

  .timeline::before{
    left: 20px;
  }

  .timeline-item{
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even){
    left: 0;
    text-align: left;
  }

  .timeline-item::before{
    left: 11px !important;
  }

}

/* NILAI KAMI */
.values-section{
  padding: 100px 8%;
  background: #f8f8f8;
}

.values-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card{
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover{
  transform: translateY(-8px);
}

.value-number{
  font-size: 60px;
  font-weight: 700;
  color: rgba(214,40,40,0.1);
  position: absolute;
  top: 10px;
  right: 20px;
}

.value-card h3{
  font-size: 24px;
  margin-bottom: 18px;
  color: #111;
  position: relative;
  z-index: 2;
}

.value-card p{
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.values-footer{
  margin-top: 70px;
  text-align: center;
  padding: 50px 30px;
  background: #d62828;
  border-radius: 25px;
  color: #fff;
}

.values-footer h3{
  font-size: 34px;
  margin-bottom: 15px;
}

.values-footer p{
  font-size: 18px;
  opacity: 0.95;
}

/* RESPONSIVE */
@media(max-width: 768px){

  .values-section{
    padding: 80px 6%;
  }

  .value-card{
    padding: 30px;
  }

  .value-card h3{
    font-size: 22px;
  }

}

/* =========================
   NILAI KAMI
========================= */

.values-section{
  position: relative;
  padding: 100px 8%;
  overflow: hidden;
  background: #f8f8f8;
}

.values-bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(214,40,40,0.04),
    rgba(0,0,0,0.02)
  );
  z-index: 1;
}

.values-wrapper{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.values-left{
  position: sticky;
  top: 100px;
}

.values-logo{
  margin-bottom: 25px;
}

.values-logo img{
  width: 180px;
  object-fit: contain;
}

.section-badge{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(214,40,40,0.1);
  color: #d62828;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.values-left h2{
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}

.values-desc{
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.company-image{
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.company-image img{
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
}

/* RIGHT */
.values-right{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item{
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border-left: 5px solid #d62828;
}

.value-item:hover{
  transform: translateY(-6px);
}

.value-item h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.value-item p{
  color: #666;
  line-height: 1.8;
}

/* FOOTER */
.values-footer{
  position: relative;
  z-index: 2;
  margin-top: 80px;
  text-align: center;
  background: #d62828;
  padding: 50px 30px;
  border-radius: 30px;
  color: #fff;
}

.values-footer h3{
  font-size: 34px;
  margin-bottom: 15px;
}

.values-footer p{
  font-size: 18px;
  opacity: 0.95;
}

/* RESPONSIVE */
@media(max-width: 992px){

  .values-wrapper{
    grid-template-columns: 1fr;
  }

  .values-left{
    position: relative;
    top: 0;
  }

  .values-left h2{
    font-size: 40px;
  }

  .company-image img{
    height: 350px;
  }

}

@media(max-width: 768px){

  .values-section{
    padding: 80px 6%;
  }

  .values-left h2{
    font-size: 34px;
  }

  .value-item{
    padding: 25px;
  }

  .values-footer h3{
    font-size: 28px;
  }

}

/* OFFICE SECTION */
.office-section {
  padding: 100px 8%;
  background: #f8f9fb;
}

.office-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.office-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: .3s;
}

.office-card:hover {
  transform: translateY(-5px);
}

.office-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

.office-city {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: #e60012;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.office-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.office-info strong {
  color: #111;
}

/* SISTER SITE */
.sister-site {
  margin-top: 80px;
  text-align: center;
}

.sister-site h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.site-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.site-links a {
  padding: 14px 24px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: .3s;
}

.site-links a:hover {
  background: #e60012;
  color: #fff;
  transform: translateY(-3px);
}

/* MAPS */
.maps-section {
  margin-top: 80px;
}

.maps-section h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.maps-grid iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ARTICLE SECTION */

.article-section {
  padding: 100px 8%;
  background: #f7f7f7;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  margin-top: 50px;
}

.article-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-content {
  padding: 25px;
}

.article-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.article-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-content a {
  color: #d40000;
  font-weight: 600;
  text-decoration: none;
}

/* ARTICLE PAGE */

.article-hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url('https://i.pinimg.com/736x/bb/48/fa/bb48fa684175310c38418de18e9e0898.jpg');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  padding: 0 8%;
}

.article-hero-content span {
  color: #ff3b3b;
  font-weight: 600;
  letter-spacing: 2px;
}

.article-hero-content h1 {
  font-size: 52px;
  margin: 20px 0;
}

.article-hero-content p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.article-page {
  padding: 100px 8%;
  background: #f5f5f5;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 35px;
}

.article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.article-content {
  padding: 30px;
}

.article-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.article-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content a {
  color: #d40000;
  text-decoration: none;
  font-weight: 600;
}

.article-modern {
  background: #f5f7fa;
  padding-bottom: 100px;
}

.article-hero-modern {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.article-hero-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  );
}

.hero-content-modern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 900px;
}

.hero-content-modern span {
  color: #ff4b4b;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-content-modern h1 {
  font-size: 60px;
  line-height: 1.2;
  margin: 25px 0;
}

.hero-content-modern p {
  font-size: 18px;
  line-height: 1.9;
}

.article-container-modern {
  max-width: 1100px;
  margin: auto;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.article-info-box {
  background: white;
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.article-info-box strong {
  display: block;
  margin-bottom: 10px;
  color: #111;
}

.article-info-box p {
  color: #666;
}

.article-content-modern {
  background: white;
  margin-top: 40px;
  padding: 70px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.article-content-modern h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 34px;
}

.article-content-modern p {
  color: #444;
  line-height: 2;
  font-size: 17px;
  margin-bottom: 25px;
}

.article-content-modern ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

.article-content-modern li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
  margin: 40px 0;
}

.article-image-grid img,
.article-full-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.article-full-image {
  margin: 50px 0;
}

@media(max-width:768px) {

  .hero-content-modern h1 {
    font-size: 38px;
  }

  .article-content-modern {
    padding: 35px 25px;
  }

}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
  margin: 40px 0;
}

.article-image-grid img,
.article-full-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.article-full-image {
  margin: 50px 0;
}

.article-content-modern ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

.article-content-modern li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
  margin: 40px 0;
}

.article-image-grid img,
.article-full-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.article-full-image {
  margin: 50px 0;
}

.article-content-modern ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

.article-content-modern li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
  margin: 40px 0;
}

.article-image-grid img,
.article-full-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.article-full-image {
  margin: 50px 0;
}

.article-content-modern ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

.article-content-modern li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* COMPLIANCE */

.compliance-main{
  padding:100px 8%;
  background:#f5f5f5;
}

.compliance-wrapper{
  max-width:1000px;
  margin:auto;
}

.compliance-box{
  margin-bottom:25px;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.accordion{
  width:100%;
  background:#111;
  color:#fff;
  cursor:pointer;
  padding:22px 30px;
  border:none;
  outline:none;
  font-size:20px;
  font-weight:600;
  text-align:left;
  transition:0.3s;
}

.accordion:hover{
  background:#d60000;
}

.accordion.active{
  background:#d60000;
}

.accordion-content{
  background:#fff;
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  display:flex;
  flex-direction:column;
}

.accordion-content a{
  padding:20px 30px;
  border-bottom:1px solid #eee;
  text-decoration:none;
  color:#333;
  font-size:16px;
  transition:0.3s;
}

.accordion-content a:hover{
  background:#f8f8f8;
  color:#d60000;
  padding-left:40px;
}

.compliance-hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
  url('https://blog.kantorku.id/wp-content/uploads/2026/04/image-207.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.compliance-hero h1{
  font-size:54px;
  margin-bottom:20px;
}

.compliance-hero p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* PORTFOLIO */

.portfolio-hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.portfolio-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.portfolio-content span{
  color:#ff3b3b;
  font-weight:600;
  letter-spacing:2px;
}

.portfolio-content h1{
  font-size:62px;
  margin:20px 0;
  line-height:1.2;
}

.portfolio-content p{
  line-height:1.9;
  font-size:17px;
}

.portfolio-section{
  padding:100px 8%;
  background:#f7f7f7;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.portfolio-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
}

.portfolio-card:hover{
  transform:translateY(-10px);
}

.portfolio-image{
  width:100%;
  height:450px;
  overflow:hidden;
}

.portfolio-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.portfolio-card:hover img{
  transform:scale(1.08);
}

.portfolio-info{
  padding:30px;
}

.portfolio-info span{
  color:#ff3b3b;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
}

.portfolio-info h3{
  font-size:26px;
  margin:15px 0;
}

.portfolio-info p{
  color:#666;
  line-height:1.8;
}

.portfolio-client{
  padding:90px 8%;
  background:#fff;
}

/* VIDEO PROJECT */
/* VIDEO PROJECT */
.project-video{
  padding:100px 8%;
  background:#f8f9fb;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-top:50px;
}

.video-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.video-card iframe{
  width:100%;
  height:350px;
  border:none;
}

.video-card h3{
  padding:20px;
  font-size:1.1rem;
  font-weight:600;
}
.client-logo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:40px;
  align-items:center;
  margin-top:60px;
}

.client-logo-grid img{
  width:100%;
  max-height:90px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:0.8;
  transition:0.3s;
}

.client-logo-grid img:hover{
  filter:grayscale(0%);
  opacity:1;
}

.portfolio-cta{
  padding:100px 8%;
  background:#111;
}

.cta-box{
  max-width:900px;
  margin:auto;
  text-align:center;
  color:white;
}

.cta-box h2{
  font-size:48px;
  margin-bottom:25px;
}

.cta-box p{
  line-height:1.9;
  margin-bottom:35px;
  color:#ccc;
}

.cta-btn{
  display:inline-block;
  padding:16px 40px;
  background:#ff3b3b;
  color:white;
  text-decoration:none;
  border-radius:12px;
  font-weight:600;
  transition:0.3s;
}

.cta-btn:hover{
  background:#d40000;
}

@media(max-width:768px){

  .portfolio-content h1{
    font-size:42px;
  }

  .cta-box h2{
    font-size:34px;
  }

}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.article-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.article-image-grid img:hover {
  transform: translateY(-5px);
}

.article-full-image {
  margin: 50px 0;
  text-align: center;
}

.article-full-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* FIRE SAFETY EQUIPMENT */

.product-image img{
    width:100%;
    height:450px;
    object-fit:contain;
    background:#fff;
    padding:20px;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
}

.product-image img:hover{
    transform:translateY(-8px);
}

.product-content h2{
    font-size:42px;
    margin:18px 0 25px;
    line-height:1.2;
    color:#111;
}

.product-content p{
    color:#555;
    line-height:2;
    margin-bottom:20px;
}

.feature-list{
    margin-top:30px;
    display:grid;
    gap:15px;
}

.feature-item{
    background:#fff;
    padding:16px 22px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    color:#444;
    font-weight:500;
    transition:.3s;
}

.feature-item:hover{
    transform:translateX(5px);
}

.hero{
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
}

.hero-badge{
    background:#e60012;
    color:#fff;
}

.advantages{
    background:#111;
    color:#fff;
    border-radius:40px;
    padding:80px;
    margin-top:50px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.adv-card{
    background:rgba(255,255,255,.06);
    padding:35px;
    border-radius:20px;
    transition:.3s;
}

.adv-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.1);
}

.adv-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.adv-card p{
    color:#d7d7d7;
    line-height:1.8;
}

.cta{
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:100px 8%;
    border-radius:40px;
    text-align:center;
    color:#fff;
}

.cta-btn{
    display:inline-block;
    padding:18px 40px;
    border-radius:60px;
    background:#e60012;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#c4000f;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .product-card{
        grid-template-columns:1fr;
        gap:40px;
    }

    .product-card.reverse{
        direction:ltr;
    }

    .product-image img{
        height:320px;
    }

    .hero h1{
        font-size:48px;
    }

    .product-content h2{
        font-size:34px;
    }

}

.catalog-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:35px;
}

.catalog-group{
    background:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.catalog-group h4{
    margin-bottom:15px;
    color:#111;
    font-size:18px;
    font-weight:600;
}

.feature-item{
    display:block;
    text-decoration:none;
    color:#555;
    padding:10px 0;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.feature-item:last-child{
    border-bottom:none;
}

.feature-item:hover{
    color:#d90000;
    padding-left:8px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fa;
}

.products-hero{
height:450px;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('https://images.unsplash.com/photo-1517048676732-d65bc937f952');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.products-hero h1{
font-size:60px;
margin:15px 0;
}

.product-section{
padding:80px 8%;
}

.category-title{
font-size:38px;
margin-bottom:40px;
color:#111;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.product-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-card h3{
margin-bottom:15px;
}

.product-card p{
line-height:1.8;
color:#666;
margin-bottom:20px;
}

.product-buttons{
display:flex;
gap:10px;
}

.product-buttons a{
flex:1;
text-align:center;
padding:12px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.product-buttons a:first-child{
background:#d60000;
color:white;
}

.product-buttons a:last-child{
border:1px solid #d60000;
color:#d60000;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:15px;
    background:#fff;
}

.product-card h3{
    padding:20px 20px 10px;
}

.product-card p{
    padding:0 20px;
}

.product-buttons{
    padding:20px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f8fa;
}

.products-header{
    text-align:center;
    padding:80px 20px;
    background:#fff;
}

.products-header span{
    color:#d60000;
    font-weight:600;
}

.products-header h1{
    font-size:50px;
    margin:15px 0;
}

.products-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.category-section{
    width:90%;
    margin:70px auto;
}

.category-section h2{
    font-size:34px;
    margin-bottom:30px;
    padding-left:15px;
    border-left:5px solid #d60000;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:contain;
    padding:20px;
    background:#fafafa;
}

.product-card h3{
    text-align:center;
    padding:20px;
    font-size:18px;
    font-weight:600;
}

/* PRODUCT NAVIGATION */
.product-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 30px;
}

.product-navigation a{
    text-decoration: none;
    color: #fff;
    background: #111;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.product-navigation a:hover{
    background: #d60000;
    transform: translateY(-3px);
}