/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #E8ECEF;
}

/* Header */
header {
    width: 100%;
    background-color: #37474F;
    padding: 10px;
    text-align: center;
    color: white;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.header-content {
    display: inline-block;
}

/* Profile Pic */
.profile-pic {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
}


.btn {
    background-color: #455A64;
    color: white;
    border: none;
    padding: 5px 10px;
    width: 210px;
    height: 40px;
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1C313A;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: #E8ECEF;
    padding: 20px;
    color: #455A64;
    text-align: center;
}

.social-links a {
    color: #455A64;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

.social-links a:hover {
    color: #1C313A;
}

.copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #455A64;
}

        .whatsapp-form {
		text-align: center; /* Center the form */
		margin: 20px 0; /* Add margin for spacing */
		}
		.whatsapp-form h4 {
		margin-bottom: 5px; /* Space between header and input box */
		}
		.whatsapp-form input {
		width: 90%; /* Responsive width */
		max-width: 600px; /* Max width for larger screens */
		padding: 10px; /* Add padding */
		margin-bottom: 10px; /* Space between input and button */
		border: 2px solid #455A64; /* Border color */
		border-radius: 5px; /* Rounded corners */
		}

		.whatsapp-form button {
		background-color: #455A64; /* Button color */
		color: white; /* Text color */
		border: none; /* Remove border */
		padding: 10px 20px; /* Add padding */
		border-radius: 5px; /* Rounded corners */
		cursor: pointer; /* Pointer cursor */
		}
		.whatsapp-form button:hover {
		background-color: #1C313A; /* Darker on hover */
		}


/* Pastikan dropdown & date picker pun putih */
.whatsapp-form select,
.whatsapp-form input[type="date"] {
  background-color: #ffffff;   /* putih */
  color: #000000;              /* teks hitam */
  /* hilangkan kelabu native di WebKit */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Kalau nak arrow dropdown custom position */
.whatsapp-form select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4L2 0zM2 5L0 3h4l-2 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
}

