/* Import Figtree dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Terapkan Figtree sebagai font utama */
body {
  font-family: 'Figtree', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar */
.navbar-brand img {
  width: 200px;
  height: auto;
}

.navbar-brand div {
  line-height: 1.2;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid #fff;
  color: #ff6b6b !important;
}

.btn-contact {
  background: linear-gradient(90deg, #ff6b6b, #ff8e3c);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: bold;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero-section {
  height: 80vh;
  background: url('../asset/pexels-photo-2138126-2138126-scaled.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 100, 0.7); /* Dark blue overlay */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.orange-bar {
  width: 10px;
  height: 100px;
  background-color: #ff8e3c;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* CTA Section */
.cta-section {
  background-color: #ff8e3c;
  color: white;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Figtree', sans-serif;
}

/* Responsif */
@media (max-width: 768px) {
  .navbar-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-brand div {
    text-align: left;
  }

  .hero-section {
    height: auto;
    padding: 5rem 0;
  }

  .orange-bar {
    height: 50px;
    width: 8px;
    margin-right: 15px;
  }

  .cta-section h3 {
    font-size: 1rem;
    text-align: left;
  }

  .cta-section .btn-outline-light {
    font-size: 0.9rem;
    padding: 8px 15px;
    font-family: 'Figtree', sans-serif;
  }
}

/* About Us Section */

.btn-read-more {
  background: linear-gradient(90deg, #ff8e3c, #ff4d4d);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Figtree', sans-serif;
}

.btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

.orange-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 60px;
  background-color: #ff8e3c;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .orange-overlay {
    display: none; /* Sembunyikan overlay di mobile agar tidak membingungkan */
  }

  .btn-read-more {
    width: 100%;
    text-align: center;
  }
}

/* Layanan Kami Section */

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  padding:30px !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-box {
    margin-bottom: 1rem;
  }
}

/* Why Us Section */

.why-us-list .benefit-item h5 {
  font-family: 'Figtree', sans-serif;
  color: #333;
}

.why-us-list .benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-us-list {
    margin-top: 2rem;
  }

  .benefit-item {
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 1px solid #dee2e6;
  }
}

/* Footer */
footer {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
}

footer p {
  color: #cccccc;
}

/* Custom Modal Styling */
.modal-content {
  background: #fff;
  padding: 1.5rem;
}

.modal-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
}

.modal-body p {
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white;
  border: none;
  font-weight: bold;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  fill: white;
}

/* Image Gallery */
.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimoni */
.testimonial-card {
  height: 100%;
}

/* Marquee Container */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: inline-block;
  animation: scroll 20s linear infinite;
  padding-left: 100%;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: inline-block;
  width: 140px;
  margin-right: 40px;
  vertical-align: middle;
}

.client-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.project-item {
  display: inline-block;
  width: 160px;
  height: 80px;
  margin-right: 40px;
  overflow: hidden;
  border-radius: 6px;
}

.project-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(0.9);
  transition: all 0.4s ease;
}

.project-logo:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
  cursor: pointer;
}