/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #00306e; /* Biru Logo */
    font-weight: bold;
}

/* Hero */
.hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* WhyMe */
.whyme {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.whyme h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.whyme-item {
    text-align: center;
}

.whyme-item img {
    height: 100px;
    margin-bottom: 20px;
}

.whyme-item h3 {
    margin-bottom: 10px;
}

/* Services */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-card img {
    height: 120px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 20px;
}

/* Map Contact */
.map-contact {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-area img {
    width: 100%;
}

.contact-area h2 {
    margin-bottom: 30px;
}

.contact-area form input,
.contact-area form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Makassar Detail */
.makassar-detail {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: #f9f9f9;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-blue {
    background-color: #00306e; /* Biru Logo */
    color: #fff;
}

.btn-green {
    background-color: #00874e; /* Hijau Logo */
    color: #fff;
}

.btn-blue-outline {
    background-color: transparent;
    color: #00306e;
    border: 2px solid #00306e;
}

/* Footer */
footer {
    background-color: #00306e; /* Biru Logo */
    color: #fff;
    padding: 50px 0;
}

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

.footer-logo img {
    height: 50px;
}