/* =========================
   PT HAKIDA RATUYA MAHESA
   PREMIUM GREEN STYLE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #081c15;
  color: #ffffff;
  overflow-x: hidden;
}

/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  background: #081c15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: 1s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 75px;
  height: 75px;
  border: 7px solid rgba(255, 255, 255, 0.15);
  border-top: 7px solid #7dffae;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 20, 12, 0.75);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h2 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

/* NAVBAR */

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  transition: 0.4s ease;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

nav a:hover {
  color: #7dffae;
}

/* HOVER LINE */

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  border-radius: 10px;
  background: #7dffae;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* MENU MOBILE */

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 30px;
  color: white;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 7%;
  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 900px;
  animation: fadeUp 1.4s ease;
}

.hero h4 {
  color: #7dffae;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero h1 span {
  color: #7dffae;
}

.hero p {
  font-size: 18px;
  line-height: 1.9;
  color: #e7e7e7;
  margin-bottom: 40px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #27d366, #1ea855);
  color: white;
  box-shadow: 0 10px 25px rgba(39, 211, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(39, 211, 102, 0.4);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: #081c15;
  transform: translateY(-5px);
}

/* =========================
   SECTION
========================= */

section {
  padding: 110px 7%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.line {
  width: 90px;
  height: 5px;
  background: #7dffae;
  border-radius: 10px;
  margin: auto;
}

/* =========================
   TENTANG
========================= */

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tentang-text h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.tentang-text p {
  line-height: 1.9;
  margin-bottom: 20px;
  color: #dddddd;
}

.tentang-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  transition: 0.5s;
}

.tentang-image img:hover {
  transform: scale(1.03);
}

/* =========================
   VISI MISI
========================= */

.visi {
  background: #0d2d1d;
}

.visi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.card img {
  width: 90px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.card p {
  line-height: 1.8;
  color: #dddddd;
}

/* =========================
   SUPPLIER
========================= */

.supplier-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.supplier-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.supplier-content h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.supplier-content p {
  line-height: 1.9;
  margin-bottom: 20px;
  color: #dddddd;
}

.supplier-content ul {
  margin-bottom: 35px;
}

.supplier-content li {
  list-style: none;
  margin-bottom: 12px;
  color: #7dffae;
  font-weight: 500;
}

/* =========================
   CUCI AC
========================= */

.cuciac {
  background: #0d2d1d;
}

.ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ac-content h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.ac-content p {
  line-height: 1.9;
  margin-bottom: 25px;
  color: #dddddd;
}

.benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.benefit span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 18px;
  transition: 0.3s;
}

.benefit span:hover {
  background: #1ea855;
}

.ac-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   LOKASI
========================= */

.lokasi {
  background: #081c15;
}

.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lokasi-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  transition: 0.5s;
}

.lokasi-image img:hover {
  transform: scale(1.03);
}

.lokasi-content h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.lokasi-content p {
  line-height: 1.9;
  color: #dddddd;
  margin-bottom: 25px;
}

.alamat-box,
.jam-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 22px;
  margin-bottom: 25px;
}

.alamat-box h4,
.jam-box h4 {
  margin-bottom: 18px;
  color: #7dffae;
  font-size: 22px;
}

.jam-list {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jam-list:last-child {
  border-bottom: none;
}

.jam-list span {
  color: #dddddd;
}

.jam-list strong {
  color: #ffffff;
}

/* =========================
   KONTAK
========================= */

.kontak-box {
  max-width: 750px;
  margin: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 55px;
  text-align: center;
}

.kontak-box img {
  width: 90px;
  margin-bottom: 20px;
}

.kontak-box h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.kontak-box p {
  line-height: 1.9;
  margin-bottom: 35px;
  color: #dddddd;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #05140c;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer h3 {
  margin-bottom: 10px;
}

footer p {
  color: #cccccc;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .hero h1 {
    font-size: 48px;
  }

  .tentang-grid,
  .visi-grid,
  .supplier-box,
  .ac-grid,
  .lokasi-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  header {
    padding: 14px 5%;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .logo h2 {
    font-size: 14px;
  }

  /* MENU MOBILE */

  .menu-toggle {
    display: block;
  }

  /* MOBILE NAVBAR */

  nav {
    position: absolute;
    top: 75px;
    right: 5%;
    width: 220px;

    background: #103b25;
    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;
    padding: 22px;

    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);
  }

  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    width: 100%;
    font-size: 14px;
  }

  .hero {
    padding: 140px 5%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .benefit {
    grid-template-columns: 1fr;
  }

  .kontak-box {
    padding: 40px 25px;
  }

  .lokasi-content h3 {
    font-size: 30px;
  }

  .jam-list {
    flex-direction: column;
    gap: 6px;
  }
}
