::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0e8c98;
    border-radius: 5px;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Rasio 16:9 */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.form-input:focus {
    border-color: #0e8c98;
    box-shadow: 0 0 0 3px rgba(14, 140, 152, 0.2);
}

.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
}

.text-gradient {
    background: linear-gradient(90deg, #0e8c98, #3b71ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, #0e8c98, #3b71ed);
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.wave-top {
    margin-top: -100px;
    height: 100px;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(135deg, #3b71ed, #0e8c98);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 140, 152, 0.2);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0e8c98, #3b71ed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Card hover effects */
.info-card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 16px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0e8c98, #3b71ed);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}
