/* =====================
   ROOT & RESET
===================== */
:root {
    --black: #0f0f0f;
    --gold: #d4af37;
    --green: #4caf50;
    --white: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
  }
  
  /* =====================
     HEADER / NAVBAR
  ===================== */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgb(65, 62, 62);
    top: 0;
    z-index: 100;
  }
  
  .logo {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
  }
  .logo span{
    display: block;
    font-size: 13;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
  }
  nav a {
    color: var(--white);
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    gap: 20px;
  }
  
  nav a:hover {
    color: var(--gold);
  }
  
  /* =====================
     BUTTON
  ===================== */
  .btn {
    background: linear-gradient(130deg, var(--gold), #b8962e);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  }
  
  /* =====================
     HERO SECTION
  ===================== */
  .hero {
    background: url('../images/profil.jpeg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 50px;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
  }
  
  .hero-content {
    position: relative;
    max-width: 600px;
  }
  
  .hero h2 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
  }
  
  .hero p {
    margin-bottom: 25px;
    color: #e0e0e0;
  }
  
  /* =========================
   TENTANG KAMI 
========================= */

/* Container Utama */
.about-section {
    padding: 50px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  /* Bagian Judul dan Teks Atas */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgb(253, 253, 253);
  }
  
  .about-text {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 40px auto; /* Memberikan jarak bawah agar tidak menempel ke kolom */
    color: var(--white);
    font-size: 1.1rem;
  }
  
  /* Layout Kolom (Visi, Misi, Keunggulan) */
  .about-box {
    display: flex;
    flex-wrap: wrap; /* Agar responsif jika layar kecil */
    gap: 10px;      /* Jarak antar kolom */
    justify-content: space-between;
    width: 100%;
  }
  
  .about-card {
    flex: 1 1 200px;          /* Membuat semua kolom memiliki lebar yang sama */
    min-width: 250px; /* Lebar minimum agar tidak terlalu gepeng di layar tanggung */
    padding: 15px;
    background: #c9870dcb;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }
  
  .about-card h3 {
    margin-top: 0;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  
  
  /* Gaya List agar lebih rapi */
  .about-card ul {
    padding-left: 20px;
    margin-top: 10px;
    padding-left: 1.2rem;
  }
  
  .about-card li {
    margin-bottom: 8px;
  }
  
  /* Responsif untuk HP */
  @media (max-width: 768px) {
    .about-box {
      flex-direction: column; /* Kolom jadi bertumpuk ke bawah di layar kecil */
    }
  }

  /* =====================
     SECTION GLOBAL
  ===================== */
  section {
    padding: 80px 60px;
  }
  
  .section-title {
    text-align: center;
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  /* =========================
   LAYANAN
========================= */
.services-section {
    padding: 80px 0;
    background-color: #272729e5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Container agar melebar ke pinggir */
  .services-section .container {
    max-width: 95%; 
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Judul Utama */
  .services-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(241, 240, 240);
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  /* Sub-deskripsi di bawah judul */
  .services-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: rgb(226, 179, 76);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Grid Layout untuk 4 Kolom */
  .services-grid {
    display: grid;
    /* Mengatur 4 kolom sejajar jika layar cukup besar */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px; /* Jarak antar kotak */
    width: 100%;
  }
  
  /* Card / Kotak Layanan */
  .service-card {
    background: #ffffff;
    padding: 35px 15px;
    border-radius: 15px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease; /* Transisi halus */
    display: flex;
    flex-direction: column;
  }
  
  /* Efek saat kursor menempel (Hover) */
  .service-card:hover {
    transform: translateY(-10px); /* Kotak naik sedikit */
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15); /* Bayangan biru halus */
    border-color: #0056b3;
  }
  
  /* Icon di dalam card */
  .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
  }
  
  /* Judul di dalam card */
  .service-card h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  /* Deskripsi singkat/teks pembuka di dalam card */
  .service-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  /* List Layanan */
  .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-card ul li {
    font-size: 0.95rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: flex-start;
  }
  
  .service-card ul li:last-child {
    border-bottom: none;
  }
  
  /* Icon centang/bullet kustom */
  .service-card ul li::before {
    content: "✓";
    color: #28a745; /* Warna hijau untuk kesan positif */
    font-weight: bold;
    margin-right: 12px;
  }
  
  /* --- RESPONSIVE MOBILE --- */
  
  /* Layanan pada Tablet (2 Kolom) */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Layanan pada HP (1 Kolom) */
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
      width: 100%;
    }
    
    .services-section .section-title {
      font-size: 1.8rem;
    }
  }
  /* =========================
    ARMADA & FASILITAS
========================= */

/* --- SECTION ARMADA & FASILITAS --- */
.fleet-section {
    padding: 80px 0;
    background-color: #201e1ece;
  }
  
  .fleet-section .container {
    max-width: 95%;
    margin: 0 auto;
  }
  
  .fleet-content {
    display: flex;
    align-items: center;
    gap: 50px; /* Jarak antara teks dan gambar */
    flex-wrap: wrap;
  }
  
  /* Bagian Teks (50% Lebar) */
  .fleet-text {
    flex: 1;
    min-width: 300px;
  }
  
  .fleet-description {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .fleet-list {
    list-style: none;
    padding: 0;
  }
  
  .fleet-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .fleet-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    background: #f0f7ff;
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
  }
  
  .fleet-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 5px;
  }
  
  .fleet-list p {
    color: rgb(209, 202, 202);
    margin: 0;
    font-size: 0.95rem;
  }
  
  /* Bagian Gambar (50% Lebar) */
  .fleet-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .fleet-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .fleet-image:hover img {
    transform: scale(1.05); /* Efek zoom saat hover */
  }
  
  /* Label di atas gambar */
  .image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 992px) {
    .fleet-content {
      flex-direction: column; /* Gambar pindah ke bawah teks pada tablet/HP */
      gap: 40px;
    }
    
    .fleet-text, .fleet-image {
      width: 100%;
    }
  }

    /* =========================
   KLIEN&MITRA
========================= */
  /* Container Utama agar lebar ke pinggir (95%) */
.clients-section.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 60px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
  }
  
  .section-title-small {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: rgb(241, 234, 234);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: rgb(247, 241, 241);
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Sektor Tags */
  .sector-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .tag {
    background: #f0f7ff;
    color: #0d0d0e;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #d0e4ff;
  }
  
  /* Logo Grid (9 Slot) */
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
  }
  
  .logo-item {
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  
  .logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: #0056b3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
  }
  
  .logo-item img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
  }
  
  /* AvailableOrder */
.portrait-order-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Dibatasi agar tidak terlalu lebar karena portrait tinggi sekali */
    margin: 0 auto;
    height: 500px; /* Tinggi awal (setengah kelihatan) */
    border-radius: 25px;
    overflow: hidden; /* Memotong gambar yang kelebihan */
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
  }
  
  /* Gambar Portrait Asli */
  .order-image-wrapper {
    width: 100%;
    height: auto;
  }
  
  .full-portrait-img {
    width: 100%;
    height: auto;
    display: block;
    /* Memastikan gambar mulai dari atas */
    object-position: top; 
  }
  
  /* Efek saat di-hover atau di-klik (Buka Full) */
  .portrait-order-container:hover {
    height: 1200px; /* Menyesuaikan agar nampak full portrait */
  }
  
  /* Overlay di bagian bawah */
  .order-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9) 70%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
  }
  
  /* Tombol Intruksi */
  .expand-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .order-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 5;
  }
  
  /* Responsive untuk HP */
  @media (max-width: 768px) {
    .portrait-order-container {
      height: 400px; /* Lebih pendek di HP */
    }
    .portrait-order-container:hover {
      height: 900px; /* Full portrait versi HP */
    }
    .order-content-overlay {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  }

  /* =====================
     SERVICES
  ===================== */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
  }
  
  .card h3 {
    color: var(--gold);
    margin-bottom: 10px;
  }
  
  .card p {
    color: #cfcfcf;
    font-size: 15px;
  }
  
  /* =====================
     FOOTER
  ===================== */
  footer {
    background: #000;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  footer h3 {
    color: var(--gold);
    margin-bottom: 10px;
  }
  
  footer p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.8;
  }
  
  /* =====================
     RESPONSIVE
  ===================== */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      gap: 15px;
      padding: 20px;
    }
  
    nav {
      text-align: center;
    }
  
    nav a {
      margin: 10px;
      display: inline-block;
    }
  
    section {
      padding: 60px 25px;
    }
  
    .hero {
      padding: 40px 25px;
      text-align: center;
    }
  
    .hero h2 {
      font-size: 30px;
    }
  
    footer {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }