@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

.contact-page {
    font-family: 'Montserrat', sans-serif;
    margin-top: 80px; /* Jarak aman dari navbar */
}

/* =========================================
   1. HERO BANNER (GAYA GLOBAL INDEPENDEN)
   ========================================= */
.contact-hero {
    /* Gradasi dari kiri gelap (biru IBS) ke kanan agak transparan */
    background: linear-gradient(to right, rgba(0, 0, 102, 0.95) 0%, rgba(0, 0, 102, 0.4) 100%), url('../img/homeimage/gallery/gal4.jpg');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    color: white;
}

.contact-hero-content {
    max-width: 650px; /* Agar teks tidak melebar ke kanan penuh */
    border-left: 5px solid #007bff;
    padding-left: 20px;
}

.contact-hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-mail-hero {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-mail-hero:hover {
    background-color: #fff;
    color: #000066;
    text-decoration: none;
}

/* =========================================
   2. CONTENT SECTION (GAYA MAKARA MARINE)
   ========================================= */
.contact-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.contact-section-title span {
    font-weight: 400;
    color: #666;
}

/* Kiri: Info Kontak */
.contact-info-block {
    display: flex;
    margin-bottom: 35px;
}

/* MEMBESARKAN IKON & TEKS KONTAK */
.contact-icon {
    font-size: 2.2rem; /* Ikon diperbesar */
    color: #007bff; 
    margin-right: 25px; /* Jarak ikon ke teks dilebarkan */
    margin-top: 5px;
}

.contact-details h5 {
    font-weight: 700;
    color: #333;
    font-size: 1.3rem; /* Judul Address/Phone/Mail diperbesar */
    margin-bottom: 8px;
}

.contact-details p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem; /* Teks isi alamat dan nomor HP diperbesar agar jelas */
    margin: 0;
}

/* Kanan: Tim / Kualifikasi */
.team-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-qualifications {
    list-style: none;
    padding: 0;
}

.team-qualifications li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.team-qualifications li::before {
    content: "\f111"; /* Ikon bulat kecil */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    color: #cc0000; /* Merah aksen */
    position: absolute;
    left: 0;
    top: 8px;
}